-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e1123e1
commit 5b07203
Showing
3 changed files
with
25 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
Changelog | ||
========= | ||
|
||
1.0.1 (03.04.2020) | ||
------------------ | ||
|
||
- Improved docs and "Getting Started" guide, | ||
- Added .coveragerc, fixed abstract class coverage, | ||
- Added mypy, | ||
- Fixed typechecking errors, | ||
- Added docstrings, | ||
- Added missing validation, | ||
- Dropped custom String type, | ||
- Cleaned up serializer.py, | ||
- Bumped base58 to 2.0.0, | ||
- Added tests for RPC client, | ||
- Fixed typehints in docs, | ||
- Added check for building docs | ||
|
||
1.0.0 (01.04.2020) | ||
------------------ | ||
|
||
- Initial release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,6 +11,7 @@ Welcome to aioeos's documentation! | |
|
||
introduction | ||
api | ||
changelog | ||
|
||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "aioeos" | ||
version = "1.0.0" | ||
version = "1.0.1" | ||
description = "Async library for interacting with EOS.io blockchain" | ||
authors = ["Maciej Janiszewski <[email protected]>"] | ||
license = "MIT" | ||
|