bump version

This commit is contained in:
Jack Robison 2018-09-26 14:38:44 -04:00
parent 8cd230eb6e
commit 42c43e86ef
No known key found for this signature in database
GPG key ID: DF25C68FE0239BB2
2 changed files with 9 additions and 4 deletions

View file

@ -11,6 +11,7 @@ at anytime.
Python 3 upgrade of the entire code base and switching to a brand new wallet
implementation are the major changes in this release.
### Security
* 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
makes it possible to recover old certificates.
### File Manager
* Extensive internal changes as a result of porting to Python 3.
### DHT
* 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.
### Reflector
*
### Database
*
### Reflector
*
## [0.21.2] - 2018-08-23
### Fixed

View file

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