From 4596d5c26f93e3e981911c2abc68c11029481b73 Mon Sep 17 00:00:00 2001 From: Jack Robison Date: Mon, 22 Oct 2018 09:12:49 -0400 Subject: [PATCH] bump --- CHANGELOG.md | 43 ++++++++++++++++++++++++++++++++++++++++++- lbrynet/__init__.py | 2 +- 2 files changed, 43 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4dda8bc9b..64184965c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,47 @@ regard to the json-rpc api. As we're currently pre-1.0 release, we can and probably will change functionality and break backwards compatibility at anytime. -## [0.30.0] - 2018-10-17 + +## Unreleased + +### Security + * + * + +### API + * + * + +### Wallet + * + * + +### File Manager + * + * + +### DHT + * + * + +### P2P + * + * + +### Reflector + * + * + +### Database + * + * + +### Known Issues + * + * + + +## [0.30.0] - 2018-10-22 This release is the most ambitious upgrade to lbrynet yet; including a brand new wallet implementation, switch to Python 3 of the entire code base and many changes to the API such as pagination and a more consistent output from @@ -58,6 +98,7 @@ most commands. * removed `send_amount_to_address` command previously marked as deprecated * removed `channel_list_mine` command previously marked as deprecated * removed `get_availability` command previously marked as deprecated + * updated `txupnp` dependency to `aioupnp` (UPnP for asyncio) ### Wallet * changed to a new wallet implementation: [torba](https://github.com/lbryio/torba). diff --git a/lbrynet/__init__.py b/lbrynet/__init__.py index 0c3b104c6..5b8fb3668 100644 --- a/lbrynet/__init__.py +++ b/lbrynet/__init__.py @@ -1,7 +1,7 @@ import logging __name__ = "lbrynet" -__version__ = "0.30.0rc10" +__version__ = "0.30.0" version = tuple(__version__.split('.')) logging.getLogger(__name__).addHandler(logging.NullHandler())