From d48d615162b0b950549990bf182bcf4fc630c731 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Sa=C5=82aban?= Date: Mon, 11 Apr 2022 20:48:19 +0200 Subject: [PATCH] Bump up version --- .bumpversion.cfg | 2 +- README.rst | 2 +- docs/source/conf.py | 6 +++--- monero/__init__.py | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index e8d2758..37abf3a 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.0 +current_version = 1.0.1 parse = (?P\d+)\.(?P\d+)(?:\.(?P\d+))? serialize = {major}.{minor}.{patch} diff --git a/README.rst b/README.rst index 32979e8..2583590 100644 --- a/README.rst +++ b/README.rst @@ -14,7 +14,7 @@ Python Monero module A comprehensive Python module for handling Monero cryptocurrency. -* release 1.0 +* release 1.0.1 * open source: https://github.com/monero-ecosystem/monero-python * works with Monero 0.17.x and `the latest source`_ (at least we try to keep up) * Python 2.x and 3.x compatible diff --git a/docs/source/conf.py b/docs/source/conf.py index 7a5b2f7..b4c263b 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -27,7 +27,7 @@ sys.path.insert(0, os.path.abspath("../..")) # If your documentation needs a minimal Sphinx version, state it here. # -# needs_sphinx = '1.0' +# needs_sphinx = '1.0.1' # Add any Sphinx extension module names here, as strings. They can be # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom @@ -56,9 +56,9 @@ author = "Michal Salaban" # built documents. # # The short X.Y version. -version = "1.0" +version = "1.0.1" # The full version, including alpha/beta/rc tags. -release = "1.0" +release = "1.0.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 514ab6b..db3352a 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.0" +__version__ = "1.0.1"