From 42c43e86ef25faa3f759221e62f8d691cb350e49 Mon Sep 17 00:00:00 2001 From: Jack Robison Date: Wed, 26 Sep 2018 14:38:44 -0400 Subject: [PATCH] bump version --- CHANGELOG.md | 11 ++++++++--- lbrynet/__init__.py | 2 +- 2 files changed, 9 insertions(+), 4 deletions(-) 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())