Skip to content

Commit 4886600

Browse files
Merge pull request #1773 from eth-brownie/v1.20.4
v1.20.4
2 parents 02335af + e59bbb9 commit 4886600

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ 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.4](https://github.com/eth-brownie/brownie/tree/v1.20.4) - 2024-05-08
11+
### Fixed
12+
- Fall back to ABI when `Contract.from_explorer` compilation fails ([#1772](https://github.com/eth-brownie/brownie/pull/1772))
13+
1014
## [1.20.3](https://github.com/eth-brownie/brownie/tree/v1.20.3) - 2024-05-05
1115
### Added
1216
- Config setting to disable short-term caching ([#1767](https://github.com/eth-brownie/brownie/pull/1767))

brownie/_config.py

Lines changed: 1 addition & 1 deletion
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.3"
22+
__version__ = "1.20.4"
2323

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

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.3
2+
current_version = 1.20.4
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.3", # don't change this manually, use bumpversion instead
27+
version="1.20.4", # 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)