diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 9a57d04..3c62f2c 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.1 +current_version = 1.1.1 parse = (?P\d+)\.(?P\d+)(?:\.(?P\d+))? serialize = {major}.{minor}.{patch} diff --git a/README.rst b/README.rst index 4e8a271..41a0931 100644 --- a/README.rst +++ b/README.rst @@ -20,7 +20,7 @@ Python Monero module A comprehensive Python module for handling Monero cryptocurrency. -* release 1.1 +* release 1.1.1 * open source: https://github.com/monero-ecosystem/monero-python * works with Monero 0.18.x and `the latest source`_ (at least we try to keep up) * available on PyPi: https://pypi.org/project/monero/ diff --git a/docs/source/conf.py b/docs/source/conf.py index 84acc3c..b223ef6 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -56,9 +56,9 @@ author = "Michal Salaban" # built documents. # # The short X.Y version. -version = "1.1" +version = "1.1.1" # The full version, including alpha/beta/rc tags. -release = "1.1" +release = "1.1.1" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/monero/__init__.py b/monero/__init__.py index 89a2a76..9b5de80 100644 --- a/monero/__init__.py +++ b/monero/__init__.py @@ -1,3 +1,3 @@ from . import address, account, const, daemon, wallet, numbers, wordlists, seed -__version__ = "1.1" +__version__ = "1.1.1"