From 5b07203c2682c4d3f3f2cfb3279b3406d7856623 Mon Sep 17 00:00:00 2001 From: Maciej Janiszewski Date: Fri, 3 Apr 2020 13:29:56 +0200 Subject: [PATCH] Bump version to 1.0.1 --- docs/source/changelog.rst | 23 +++++++++++++++++++++++ docs/source/index.rst | 1 + pyproject.toml | 2 +- 3 files changed, 25 insertions(+), 1 deletion(-) create mode 100644 docs/source/changelog.rst 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"