bump version
This commit is contained in:
parent
8cd230eb6e
commit
42c43e86ef
2 changed files with 9 additions and 4 deletions
11
CHANGELOG.md
11
CHANGELOG.md
|
@ -11,6 +11,7 @@ at anytime.
|
||||||
Python 3 upgrade of the entire code base and switching to a brand new wallet
|
Python 3 upgrade of the entire code base and switching to a brand new wallet
|
||||||
implementation are the major changes in this release.
|
implementation are the major changes in this release.
|
||||||
|
|
||||||
|
|
||||||
### Security
|
### Security
|
||||||
* upgraded `cryptography` package.
|
* upgraded `cryptography` package.
|
||||||
|
|
||||||
|
@ -57,17 +58,21 @@ implementation are the major changes in this release.
|
||||||
* changed channel certificates to be keyed by txid:nout instead of claim_id which
|
* changed channel certificates to be keyed by txid:nout instead of claim_id which
|
||||||
makes it possible to recover old certificates.
|
makes it possible to recover old certificates.
|
||||||
|
|
||||||
|
### File Manager
|
||||||
|
* Extensive internal changes as a result of porting to Python 3.
|
||||||
|
|
||||||
### DHT
|
### DHT
|
||||||
* Extensive internal changes as a result of porting to Python 3.
|
* Extensive internal changes as a result of porting to Python 3.
|
||||||
|
|
||||||
### P2P & File Manager
|
### P2P
|
||||||
* Extensive internal changes as a result of porting to Python 3.
|
* Extensive internal changes as a result of porting to Python 3.
|
||||||
|
|
||||||
|
### Reflector
|
||||||
|
*
|
||||||
|
|
||||||
### Database
|
### Database
|
||||||
*
|
*
|
||||||
|
|
||||||
### Reflector
|
|
||||||
*
|
|
||||||
|
|
||||||
## [0.21.2] - 2018-08-23
|
## [0.21.2] - 2018-08-23
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
import logging
|
import logging
|
||||||
|
|
||||||
__version__ = "0.30.0a"
|
__version__ = "0.30.0rc1"
|
||||||
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