This commit is contained in:
Jack Robison 2018-07-24 21:10:53 -04:00
parent 903cd86cdd
commit 5984ae7ce9
No known key found for this signature in database
GPG key ID: DF25C68FE0239BB2
6 changed files with 6 additions and 10 deletions

View file

@ -8,12 +8,6 @@ can and probably will change functionality and break backwards compatability
at anytime. at anytime.
## [Unreleased] ## [Unreleased]
## [0.20.3] - 2018-07-20
### Changed
* Additional information added to the balance error message when editing a claim.
(https://github.com/lbryio/lbry/pull/1309)
### Security ### Security
* *
* *
@ -40,7 +34,7 @@ at anytime.
* `requires` decorator to register the components required by a `jsonrpc_` command, to facilitate commands registering asynchronously * `requires` decorator to register the components required by a `jsonrpc_` command, to facilitate commands registering asynchronously
* unittests for `ComponentManager` * unittests for `ComponentManager`
* script to generate docs/api.json file (https://github.com/lbryio/lbry.tech/issues/42) * script to generate docs/api.json file (https://github.com/lbryio/lbry.tech/issues/42)
* additional information to the balance error message when editing a claim (https://github.com/lbryio/lbry/pull/1309)
### Removed ### Removed
* most of the internal attributes from `Daemon` * most of the internal attributes from `Daemon`

View file

@ -1,5 +1,4 @@
import logging import logging
import customLogger
__version__ = "0.20.4" __version__ = "0.20.4"
version = tuple(__version__.split('.')) version = tuple(__version__.split('.'))

View file

@ -5,3 +5,5 @@ This includes classes for connecting to other peers and downloading blobs from t
connections from peers and responding to their requests, managing locally stored blobs, sending connections from peers and responding to their requests, managing locally stored blobs, sending
and receiving payments, and locating peers in the DHT. and receiving payments, and locating peers in the DHT.
""" """
from lbrynet import custom_logger

View file

@ -1,3 +1,4 @@
from lbrynet import custom_logger
import Components # register Component classes import Components # register Component classes
from lbrynet.daemon.auth.client import LBRYAPIClient from lbrynet.daemon.auth.client import LBRYAPIClient
get_client = LBRYAPIClient.get_client get_client = LBRYAPIClient.get_client

View file

@ -6,7 +6,7 @@ import unittest
from twisted.internet import defer from twisted.internet import defer
from twisted import trial from twisted import trial
from lbrynet import customLogger from lbrynet import custom_logger
from lbrynet.tests.util import is_android from lbrynet.tests.util import is_android
@ -22,7 +22,7 @@ class TestLogger(trial.unittest.TestCase):
return d return d
def setUp(self): def setUp(self):
self.log = customLogger.Logger('test') self.log = custom_logger.Logger('test')
self.stream = StringIO.StringIO() self.stream = StringIO.StringIO()
handler = logging.StreamHandler(self.stream) handler = logging.StreamHandler(self.stream)
handler.setFormatter(logging.Formatter("%(filename)s:%(lineno)d - %(message)s")) handler.setFormatter(logging.Formatter("%(filename)s:%(lineno)d - %(message)s"))