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,