From 9d387b4a16c36763df91468a935476c7d090e578 Mon Sep 17 00:00:00 2001 From: Ben Hauser Date: Sat, 22 Jun 2024 15:53:16 +0000 Subject: [PATCH] release: update changelog, bump version to v1.20.6 --- CHANGELOG.md | 8 ++++++++ brownie/_config.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 4 files changed, 11 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 824351381..3d1a53af0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased](https://github.com/eth-brownie/brownie) +## [1.20.6](https://github.com/eth-brownie/brownie/tree/v1.20.6) - 2024-06-22 +### Added +- `include` kwarg for address strategy, type-dependent strategy overloads ([#1780](https://github.com/eth-brownie/brownie/pull/1780)) + +### Fixed +- ds-note decoding ([#1781](https://github.com/eth-brownie/brownie/pull/1781)) +- "Dropped without known replacement" tx race condition ([#1782](https://github.com/eth-brownie/brownie/pull/1782)) + ## [1.20.5](https://github.com/eth-brownie/brownie/tree/v1.20.5) - 2024-05-22 ### Fixed - Handle missing `blockNumber` while awaiting confirmation ([#1774](https://github.com/eth-brownie/brownie/pull/1774)) diff --git a/brownie/_config.py b/brownie/_config.py index 2159a892e..2b3ebe6a9 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.20.5" +__version__ = "1.20.6" BROWNIE_FOLDER = Path(__file__).parent DATA_FOLDER = Path.home().joinpath(".brownie") diff --git a/setup.cfg b/setup.cfg index 7d815cafb..149409482 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.20.5 +current_version = 1.20.6 [bumpversion:file:setup.py] diff --git a/setup.py b/setup.py index 5ffa3870b..3d598d6b0 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ setup( name="eth-brownie", packages=find_packages(), - version="1.20.5", # don't change this manually, use bumpversion instead + version="1.20.6", # 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,