diff --git a/CHANGELOG.md b/CHANGELOG.md index edfe91f69..f89437b9a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/lbrynet/__init__.py b/lbrynet/__init__.py index b55f2c5cb..74fb6fa95 100644 --- a/lbrynet/__init__.py +++ b/lbrynet/__init__.py @@ -1,6 +1,6 @@ import logging -__version__ = "0.30.0a" +__version__ = "0.30.0rc1" version = tuple(__version__.split('.')) logging.getLogger(__name__).addHandler(logging.NullHandler())