From f5535beafd609d6f2cb02a674e91a1e23ae33f76 Mon Sep 17 00:00:00 2001 From: Ben Hauser Date: Fri, 16 Apr 2021 20:56:58 +0400 Subject: [PATCH 1/2] chore: bump dependencies --- requirements-dev.txt | 4 ++-- requirements-windows.txt | 4 ++-- requirements.txt | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/requirements-dev.txt b/requirements-dev.txt index a657a2795..955a8584e 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -66,7 +66,7 @@ eth-account==0.5.4 # via # -r requirements.in # web3 -eth-event==1.2.1 +eth-event==1.2.3 # via -r requirements.in eth-hash[pycryptodome]==0.3.1 # via @@ -336,7 +336,7 @@ virtualenv==20.4.3 # via tox vvm==0.1.0 # via -r requirements.in -vyper==0.2.11 +vyper==0.2.12 # via -r requirements.in wcwidth==0.2.5 # via prompt-toolkit diff --git a/requirements-windows.txt b/requirements-windows.txt index 89953339a..11e55c15d 100644 --- a/requirements-windows.txt +++ b/requirements-windows.txt @@ -44,7 +44,7 @@ eth-account==0.5.4 # via # -r requirements.in # web3 -eth-event==1.2.1 +eth-event==1.2.3 # via -r requirements.in eth-hash[pycryptodome]==0.3.1 # via @@ -218,7 +218,7 @@ varint==1.0.2 # via multiaddr vvm==0.1.0 # via -r requirements.in -vyper==0.2.11 +vyper==0.2.12 # via -r requirements.in wcwidth==0.2.5 # via prompt-toolkit diff --git a/requirements.txt b/requirements.txt index b169f2da1..de5efb07b 100644 --- a/requirements.txt +++ b/requirements.txt @@ -42,7 +42,7 @@ eth-account==0.5.2 # via # -r requirements.in # web3 -eth-event==1.2.1 +eth-event==1.2.3 # via -r requirements.in eth-hash[pycryptodome]==0.2.0 # via @@ -228,7 +228,7 @@ varint==1.0.2 # via multiaddr vvm==0.1.0 # via -r requirements.in -vyper==0.2.11 +vyper==0.2.12 # via -r requirements.in wcwidth==0.2.5 # via prompt-toolkit From 9c8399caa2aec1d54d9df635b63561bfcfde19ad Mon Sep 17 00:00:00 2001 From: Ben Hauser Date: Fri, 16 Apr 2021 21:02:50 +0400 Subject: [PATCH 2/2] release: update changelog, bump version to v1.14.5 --- CHANGELOG.md | 12 +++++++++--- brownie/_config.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 4 files changed, 12 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 71c6ea2e2..b2eda581d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,16 +7,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased](https://github.com/eth-brownie/brownie) +## [1.14.5](https://github.com/eth-brownie/brownie/tree/v1.14.5) - 2021-04-16 ### Added - - Added documentation detailing how private Github repositories can be used as a package installation source. +- Add passphrase kwarg to `Account.from_mnemonic` ([#1050](https://github.com/eth-brownie/brownie/pull/1050)) -### Fixed +### Changed +- Include `chainId` field when signing transactions ([#1056](https://github.com/eth-brownie/brownie/pull/1056)) +### Fixed - Fixed a formatting issue on the new [environment variable section](https://eth-brownie.readthedocs.io/en/stable/config.html?highlight=POSIX-style#variable-expansion) ([#1038](https://github.com/eth-brownie/brownie/pull/1038)) - Fixed Github package installation failing for private repositories ([#1055](https://github.com/eth-brownie/brownie/pull/1055)). - Adjusted Github API token error message so that it correctly emits when auth failure occurs ([#1052](https://github.com/eth-brownie/brownie/pull/1052)) - +- Remove `__ret_value__` prior to writing console output ([#1057](https://github.com/eth-brownie/brownie/pull/1057)) +- Handle missing contract when generating transaction receipt ([#1058](https://github.com/eth-brownie/brownie/pull/1058)) +- `StopIteration` issues within receipts ([#1059](https://github.com/eth-brownie/brownie/pull/1059)) +- Do not cache `eth_newBlockFilter` ([#1061](https://github.com/eth-brownie/brownie/pull/1061)) ## [1.14.4](https://github.com/eth-brownie/brownie/tree/v1.14.4) - 2021-04-05 ### Added diff --git a/brownie/_config.py b/brownie/_config.py index e2c476535..b322ff31a 100644 --- a/brownie/_config.py +++ b/brownie/_config.py @@ -19,7 +19,7 @@ from brownie._expansion import expand_posix_vars from brownie._singleton import _Singleton -__version__ = "1.14.4" +__version__ = "1.14.5" BROWNIE_FOLDER = Path(__file__).parent DATA_FOLDER = Path.home().joinpath(".brownie") diff --git a/setup.cfg b/setup.cfg index 1bd7e2f50..cd1bd0500 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.14.4 +current_version = 1.14.5 [bumpversion:file:setup.py] diff --git a/setup.py b/setup.py index 948577eed..b8db2c0c5 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ setup( name="eth-brownie", packages=find_packages(), - version="1.14.4", # don't change this manually, use bumpversion instead + version="1.14.5", # don't change this manually, use bumpversion instead license="MIT", description="A Python framework for Ethereum smart contract deployment, testing and interaction.", # noqa: E501 long_description=long_description,