From e295b52c0e9bb5e27de92cfe005e1c63b853ba51 Mon Sep 17 00:00:00 2001 From: Ben Hauser Date: Wed, 4 Nov 2020 21:37:21 +0400 Subject: [PATCH] release: update changelog, bump version to v1.11.12 --- CHANGELOG.md | 10 ++++++++++ brownie/_config.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 4 files changed, 13 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2ba377524..08a35b48a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased](https://github.com/eth-brownie/brownie) +## [1.11.12](https://github.com/eth-brownie/brownie/tree/v1.11.12) - 2020-11-04 +### Added +- `timestamp` kwarg for `chain.mine` ([#838](https://github.com/eth-brownie/brownie/pull/838)) +- `ETH_ADDRESS` constant ([#835](https://github.com/eth-brownie/brownie/pull/835)) +- show nonce in console output for pending transactions ([#833](https://github.com/eth-brownie/brownie/pull/833)) + +### Fixed +- Allow use of `ProjectContract` in tx "from" field on development networks ([#836](https://github.com/eth-brownie/brownie/pull/836)) +- Do not attempt to open debugging console when the failing test has not been collected due to a `SyntaxError` ([#834](https://github.com/eth-brownie/brownie/pull/834)) + ## [1.11.11](https://github.com/eth-brownie/brownie/tree/v1.11.11) - 2020-10-31 ### Added - `ZERO_ADDRESS` constant is now available from main namespace ([#830](https://github.com/eth-brownie/brownie/pull/830)) diff --git a/brownie/_config.py b/brownie/_config.py index d1dd5f26f..a4d7fe588 100644 --- a/brownie/_config.py +++ b/brownie/_config.py @@ -17,7 +17,7 @@ from brownie._singleton import _Singleton -__version__ = "1.11.11" +__version__ = "1.11.12" BROWNIE_FOLDER = Path(__file__).parent DATA_FOLDER = Path.home().joinpath(".brownie") diff --git a/setup.cfg b/setup.cfg index cb3511714..b9d0d3081 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.11.11 +current_version = 1.11.12 [bumpversion:file:setup.py] diff --git a/setup.py b/setup.py index fc8092da3..899cba817 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ setup( name="eth-brownie", packages=find_packages(), - version="1.11.11", # don't change this manually, use bumpversion instead + version="1.11.12", # 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,