diff --git a/.bumpversion.cfg b/.bumpversion.cfg new file mode 100644 index 0000000..f38de64 --- /dev/null +++ b/.bumpversion.cfg @@ -0,0 +1,8 @@ +[bumpversion] +current_version = 0.9.3 + +[bumpversion:file:README.rst] + +[bumpversion:file:monero/__init__.py] + +[bumpversion:file:docs/source/conf.py] diff --git a/.gitignore b/.gitignore index e1f492d..7d4431f 100644 --- a/.gitignore +++ b/.gitignore @@ -3,6 +3,7 @@ !.gitignore !.travis.yml !.pre-commit-config.yaml +!.bumpversion.cfg *.py[co] *~ *.bak diff --git a/README.rst b/README.rst index f6e8d16..79dcbf5 100644 --- a/README.rst +++ b/README.rst @@ -14,7 +14,7 @@ Python Monero module A comprehensive Python module for handling Monero cryptocurrency. -* release 0.9.2 +* release 0.9.3 * open source: https://github.com/monero-ecosystem/monero-python * works with Monero 0.13.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 4654065..bf847fd 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 = "0.9.2" +version = "0.9.3" # The full version, including alpha/beta/rc tags. -release = "0.9.2" +release = "0.9.3" # 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 9a20838..62d6617 100644 --- a/monero/__init__.py +++ b/monero/__init__.py @@ -1,3 +1,3 @@ from . import address, account, const, daemon, wallet, numbers, wordlists, seed -__version__ = "0.9.2" +__version__ = "0.9.3"