Bump version: 0.10.1rc2 → 0.10.1

This commit is contained in:
Alex Grintsvayg 2017-05-03 11:37:00 -04:00
parent 1c8735295b
commit 6097ebb7b8
3 changed files with 12 additions and 6 deletions

View file

@ -1,5 +1,5 @@
[bumpversion] [bumpversion]
current_version = 0.10.1rc2 current_version = 0.10.1
commit = True commit = True
tag = True tag = True
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)((?P<release>[a-z]+)(?P<candidate>\d+))? parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)((?P<release>[a-z]+)(?P<candidate>\d+))?

View file

@ -8,7 +8,6 @@ can and probably will change functionality and break backwards compatability
at anytime. at anytime.
## [Unreleased] ## [Unreleased]
### Added ### Added
* *
* *
@ -18,9 +17,8 @@ at anytime.
* *
### Fixed ### Fixed
* Fix multiple reactor.stop() calls *
* Properly shut down lbryum wallet from lbrynet *
* Set LBRYumWallet.config upon initialization, fixes attribute error
### Deprecated ### Deprecated
* *
@ -30,6 +28,14 @@ at anytime.
* *
* *
## [0.10.1] - 2017-05-03
### Fixed
* Fix multiple reactor.stop() calls
* Properly shut down lbryum wallet from lbrynet
* Set LBRYumWallet.config upon initialization, fixes attribute error
## [0.10.0] - 2017-04-25 ## [0.10.0] - 2017-04-25

View file

@ -1,6 +1,6 @@
import logging import logging
__version__ = "0.10.1rc2" __version__ = "0.10.1"
version = tuple(__version__.split('.')) version = tuple(__version__.split('.'))
logging.getLogger(__name__).addHandler(logging.NullHandler()) logging.getLogger(__name__).addHandler(logging.NullHandler())