Skip to content

Commit 987661b

Browse files
release: update changelog, bump version to v1.20.1
1 parent 3d32f40 commit 987661b

File tree

4 files changed

+12
-3
lines changed

4 files changed

+12
-3
lines changed

CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased](https://github.com/eth-brownie/brownie)
99

10+
## [1.20.1](https://github.com/eth-brownie/brownie/tree/v1.20.1) - 2024-02-12
11+
### Added
12+
- verbose option for `multicall` debugging ([#1743](https://github.com/eth-brownie/brownie/pull/1743))
13+
14+
### Fixed
15+
- handle exceptions within caching middleware ([#1742](https://github.com/eth-brownie/brownie/pull/1742))
16+
- update `docopt-ng` to support latest python ([#1738](https://github.com/eth-brownie/brownie/pull/1738))
17+
- `camelCase` to `snake_case` updates ([#1737](https://github.com/eth-brownie/brownie/pull/1737))
18+
1019
## [1.20.0](https://github.com/eth-brownie/brownie/tree/v1.20.0) - 2024-02-02
1120
### Changed
1221
- Add support for Python 3.12, drop support for Python 3.9 ([#1735](https://github.com/eth-brownie/brownie/pull/1735))

brownie/_config.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
from brownie._expansion import expand_posix_vars
2020
from brownie._singleton import _Singleton
2121

22-
__version__ = "1.20.0"
22+
__version__ = "1.20.1"
2323

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

setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 1.20.0
2+
current_version = 1.20.1
33

44
[bumpversion:file:setup.py]
55

setup.py

+1-1
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.0", # don't change this manually, use bumpversion instead
27+
version="1.20.1", # 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)