Skip to content

Commit a7fe1b8

Browse files
v1.21.0 (#1869)
* release: update changelog, bump version to v1.21.0 * chore: `black .` and `pip-compile` --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 1b92e70 commit a7fe1b8

File tree

6 files changed

+8
-5
lines changed

6 files changed

+8
-5
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,14 @@ This changelog format is based on [Keep a Changelog](https://keepachangelog.com/
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

88
## [Unreleased](https://github.com/eth-brownie/brownie)
9+
10+
## [1.21.0](https://github.com/eth-brownie/brownie/tree/v1.21.0) - 2025-05-23
911
### Fixed
1012
- GethPOAMiddleware on Polygon networks with anvil fork ([#1791](https://github.com/eth-brownie/brownie/pull/1791))
1113

1214
### Changed
1315
- replace `eth_utils.to_checksum_address` with `cchecksum.to_checksum_address` for ~8x faster checksumming ([#1796](https://github.com/eth-brownie/brownie/pull/1796))
16+
- Use Etherscan v2 API (only uses `ETHERSCAN_TOKEN` env var for all networks) ([#1852](https://github.com/eth-brownie/brownie/pull/1852))
1417

1518
## [1.20.7](https://github.com/eth-brownie/brownie/tree/v1.20.7) - 2025-01-07
1619
### Added

brownie/_config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
from brownie._expansion import expand_posix_vars
2121
from brownie._singleton import _Singleton
2222

23-
__version__ = "1.20.7"
23+
__version__ = "1.21.0"
2424

2525
BROWNIE_FOLDER = Path(__file__).parent
2626
DATA_FOLDER = Path.home().joinpath(".brownie")

requirements-dev.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ click==8.2.1
4545
# pip-tools
4646
colorama==0.4.6
4747
# via tox
48-
coverage[toml]==7.8.1
48+
coverage[toml]==7.8.2
4949
# via
5050
# -r requirements-dev.in
5151
# pytest-cov

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ pycryptodome==3.23.0
172172
# eth-hash
173173
# eth-keyfile
174174
# vyper
175-
pydantic==2.11.4
175+
pydantic==2.11.5
176176
# via eth-account
177177
pydantic-core==2.33.2
178178
# via pydantic

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 1.20.7
2+
current_version = 1.21.0
33

44
[bumpversion:file:setup.py]
55

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
setup(
2525
name="eth-brownie",
2626
packages=find_packages(),
27-
version="1.20.7", # don't change this manually, use bumpversion instead
27+
version="1.21.0", # don't change this manually, use bumpversion instead
2828
license="MIT",
2929
description="A Python framework for Ethereum smart contract deployment, testing and interaction.", # noqa: E501
3030
long_description=long_description,

0 commit comments

Comments
 (0)