Skip to content
This repository was archived by the owner on Mar 9, 2024. It is now read-only.

Commit 18c7afb

Browse files
committed
Bump up version
1 parent 035fedb commit 18c7afb

File tree

5 files changed

+13
-4
lines changed

5 files changed

+13
-4
lines changed

.bumpversion.cfg

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
[bumpversion]
2+
current_version = 0.9.3
3+
4+
[bumpversion:file:README.rst]
5+
6+
[bumpversion:file:monero/__init__.py]
7+
8+
[bumpversion:file:docs/source/conf.py]

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
!.gitignore
44
!.travis.yml
55
!.pre-commit-config.yaml
6+
!.bumpversion.cfg
67
*.py[co]
78
*~
89
*.bak

README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Python Monero module
1414

1515
A comprehensive Python module for handling Monero cryptocurrency.
1616

17-
* release 0.9.2
17+
* release 0.9.3
1818
* open source: https://github.com/monero-ecosystem/monero-python
1919
* works with Monero 0.13.x and `the latest source`_ (at least we try to keep up)
2020
* Python 2.x and 3.x compatible

docs/source/conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,9 @@
5656
# built documents.
5757
#
5858
# The short X.Y version.
59-
version = "0.9.2"
59+
version = "0.9.3"
6060
# The full version, including alpha/beta/rc tags.
61-
release = "0.9.2"
61+
release = "0.9.3"
6262

6363
# The language for content autogenerated by Sphinx. Refer to documentation
6464
# for a list of supported languages.

monero/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
from . import address, account, const, daemon, wallet, numbers, wordlists, seed
22

3-
__version__ = "0.9.2"
3+
__version__ = "0.9.3"

0 commit comments

Comments
 (0)