From 539ad6b165311b78d35770db4c9c4bd11e21e148 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Sa=C5=82aban?= Date: Fri, 16 Mar 2018 00:28:31 +0100 Subject: [PATCH] Prepare for v0.2 --- README.rst | 10 +++++++++- docs/source/conf.py | 4 ++-- monero/__init__.py | 2 +- 3 files changed, 12 insertions(+), 4 deletions(-) diff --git a/README.rst b/README.rst index f1c160e..25916c6 100644 --- a/README.rst +++ b/README.rst @@ -20,10 +20,18 @@ Released under the BSD 3-Clause License. See `LICENSE.txt`_. Copyright (c) 2017 Michał Sałaban -Copyright (c) 2016 The MoneroPy Developers (``monero/base58.py`` taken from `MoneroPy`_) +Copyright (c) 2016 The MoneroPy Developers (``monero/base58.py`` and ``monero/ed25519.py`` taken from `MoneroPy`_) + +Copyright (c) 2011 thomasv@gitorious (``monero/seed.py`` based on `Electrum`_) .. _`LICENSE.txt`: LICENSE.txt .. _`MoneroPy`: https://github.com/bigreddmachine/MoneroPy +.. _`Electrum`: https://github.com/spesmilo/electrum + +Contributors: `lalanza808`_, `cryptochangements34`_ + +.. _`lalanza808`: https://github.com/lalanza808 +.. _`cryptochangements34`: https://github.com/cryptochangements34 Want to help? ------------- diff --git a/docs/source/conf.py b/docs/source/conf.py index 5036d33..6d76a3f 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.1.3' +version = '0.2' # The full version, including alpha/beta/rc tags. -release = '0.1.3' +release = '0.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 96a5dbf..4ac52b8 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.1.3' +__version__ = '0.2'