diff --git a/docs/source/changelog.rst b/docs/source/changelog.rst new file mode 100644 index 0000000..458608f --- /dev/null +++ b/docs/source/changelog.rst @@ -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 diff --git a/docs/source/index.rst b/docs/source/index.rst index d870238..bdcb911 100644 --- a/docs/source/index.rst +++ b/docs/source/index.rst @@ -11,6 +11,7 @@ Welcome to aioeos's documentation! introduction api + changelog diff --git a/pyproject.toml b/pyproject.toml index 4440691..aebe2b7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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 "] license = "MIT"