diff --git a/README.rst b/README.rst index 1fedb8b..5be8a89 100644 --- a/README.rst +++ b/README.rst @@ -14,7 +14,7 @@ Python Monero module A comprehensive Python module for handling Monero cryptocurrency. -* release 0.4.1 +* release 0.4.2 * works with Monero 0.12.x and `the latest source`_ (at least we try to keep up) * Python 2.x and 3.x compatible * comes with `documentation`_ @@ -39,12 +39,13 @@ Copyright (c) 2011 thomasv@gitorious (``monero/seed.py`` based on `Electrum`_) .. _`MoneroPy`: https://github.com/bigreddmachine/MoneroPy .. _`Electrum`: https://github.com/spesmilo/electrum -Contributors: `lalanza808`_, `cryptochangements34`_, `atward`_, `rooterkyberian`_. +Contributors: `lalanza808`_, `cryptochangements34`_, `atward`_, `rooterkyberian`_, `brucexiu`_. .. _`lalanza808`: https://github.com/lalanza808 .. _`cryptochangements34`: https://github.com/cryptochangements34 .. _`atward`: https://github.com/atward .. _`rooterkyberian`: https://github.com/rooterkyberian +.. _`brucexiu`: https://github.com/brucexiu Want to help? ------------- diff --git a/docs/source/conf.py b/docs/source/conf.py index 8562e9c..21307d7 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -55,9 +55,9 @@ author = 'Michal Salaban' # built documents. # # The short X.Y version. -version = '0.4.1' +version = '0.4.2' # The full version, including alpha/beta/rc tags. -release = '0.4.1' +release = '0.4.2' # 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 08ddd3c..9e65838 100644 --- a/monero/__init__.py +++ b/monero/__init__.py @@ -1,3 +1,3 @@ from . import address, account, daemon, wallet, numbers, prio, wordlists, seed -__version__ = '0.4.1' +__version__ = '0.4.2'