From 713a2adbc9a052af7cf7b82c6420cdf360444021 Mon Sep 17 00:00:00 2001 From: holgern <holgernahrstaedt@gmx.de> Date: Wed, 28 Aug 2019 10:36:57 +0200 Subject: [PATCH] Update changelog --- .travis.yml | 2 +- CHANGELOG.rst | 13 +++++++++++++ beem/account.py | 2 +- 3 files changed, 15 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index f04f18c9..5ecd14ec 100644 --- a/.travis.yml +++ b/.travis.yml @@ -57,7 +57,7 @@ before_install: - pip install --upgrade pip - pip install --upgrade wheel # Set numpy version first, other packages link against it - - pip install six nose coverage codecov tox-travis pytest pytest-cov coveralls codacy-coverage parameterized secp256k1prp cryptography scrypt + - pip install six nose coverage codecov pytest pytest-cov coveralls codacy-coverage parameterized secp256k1prp cryptography scrypt - pip install pycryptodomex pyyaml appdirs pylibscrypt - pip install ecdsa requests future websocket-client pytz six Click events prettytable diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 3416f561..99b5729c 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,5 +1,18 @@ Changelog ========= +0.21.0 +------ +* First release for HF21 +* get_downvoting_power added to account +* get_downvote_manabar added to account +* add options use_tags_api to use database api to get comments +* fix get_similar_account_names +* add more try expect to fail back to condenser api +* operations for account_update2, create_proposal, update_proposal_votes and remove_proposal were added +* update_proposal_votes was added to steem +* update_account_jsonmetadata was added to account +* new beempy delete were added + 0.20.23 ------- * Switch to next node, when current node has the necesary api not enabled diff --git a/beem/account.py b/beem/account.py index 49b2ea74..6af0dae4 100644 --- a/beem/account.py +++ b/beem/account.py @@ -581,7 +581,7 @@ class Account(BlockchainObject): remainingTime = self.get_recharge_timedelta(voting_power_goal=voting_power_goal, starting_voting_power=starting_voting_power) return formatTimedelta(remainingTime) - def get_recharge_timedelta(self, voting_power_goal=100, starting_voting_power=None, upvote=True): + def get_recharge_timedelta(self, voting_power_goal=100, starting_voting_power=None): """ Returns the account voting power recharge time as timedelta object :param float voting_power_goal: voting power goal in percentage (default is 100) -- GitLab