forked from LBRYCommunity/lbry-sdk
Bump version: 0.10.1rc2 → 0.10.1
This commit is contained in:
parent
1c8735295b
commit
6097ebb7b8
3 changed files with 12 additions and 6 deletions
|
@ -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+))?
|
||||||
|
|
14
CHANGELOG.md
14
CHANGELOG.md
|
@ -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
|
||||||
|
|
||||||
|
|
|
@ -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())
|
||||||
|
|
Loading…
Reference in a new issue