From 987661bddc813bc81484bcfa98b7061da79bb342 Mon Sep 17 00:00:00 2001 From: Ben Hauser Date: Tue, 13 Feb 2024 02:05:41 +0400 Subject: [PATCH] release: update changelog, bump version to v1.20.1 --- CHANGELOG.md | 9 +++++++++ brownie/_config.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 4 files changed, 12 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e18b546df..72d36de2c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased](https://github.com/eth-brownie/brownie) +## [1.20.1](https://github.com/eth-brownie/brownie/tree/v1.20.1) - 2024-02-12 +### Added +- verbose option for `multicall` debugging ([#1743](https://github.com/eth-brownie/brownie/pull/1743)) + +### Fixed +- handle exceptions within caching middleware ([#1742](https://github.com/eth-brownie/brownie/pull/1742)) +- update `docopt-ng` to support latest python ([#1738](https://github.com/eth-brownie/brownie/pull/1738)) +- `camelCase` to `snake_case` updates ([#1737](https://github.com/eth-brownie/brownie/pull/1737)) + ## [1.20.0](https://github.com/eth-brownie/brownie/tree/v1.20.0) - 2024-02-02 ### Changed - Add support for Python 3.12, drop support for Python 3.9 ([#1735](https://github.com/eth-brownie/brownie/pull/1735)) diff --git a/brownie/_config.py b/brownie/_config.py index 66e8d60a8..a4a0e9b7a 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.0" +__version__ = "1.20.1" BROWNIE_FOLDER = Path(__file__).parent DATA_FOLDER = Path.home().joinpath(".brownie") diff --git a/setup.cfg b/setup.cfg index 0591ea40a..4a8a59138 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.20.0 +current_version = 1.20.1 [bumpversion:file:setup.py] diff --git a/setup.py b/setup.py index 1011c43e3..a34853055 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ setup( name="eth-brownie", packages=find_packages(), - version="1.20.0", # don't change this manually, use bumpversion instead + version="1.20.1", # 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,