Skip to content

Commit

Permalink
Merge pull request #1773 from eth-brownie/v1.20.4
Browse files Browse the repository at this point in the history
v1.20.4
  • Loading branch information
iamdefinitelyahuman authored May 8, 2024
2 parents 02335af + e59bbb9 commit 4886600
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

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

## [1.20.4](https://github.com/eth-brownie/brownie/tree/v1.20.4) - 2024-05-08
### Fixed
- Fall back to ABI when `Contract.from_explorer` compilation fails ([#1772](https://github.com/eth-brownie/brownie/pull/1772))

## [1.20.3](https://github.com/eth-brownie/brownie/tree/v1.20.3) - 2024-05-05
### Added
- Config setting to disable short-term caching ([#1767](https://github.com/eth-brownie/brownie/pull/1767))
Expand Down
2 changes: 1 addition & 1 deletion brownie/_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
from brownie._expansion import expand_posix_vars
from brownie._singleton import _Singleton

__version__ = "1.20.3"
__version__ = "1.20.4"

BROWNIE_FOLDER = Path(__file__).parent
DATA_FOLDER = Path.home().joinpath(".brownie")
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.20.3
current_version = 1.20.4

[bumpversion:file:setup.py]

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
setup(
name="eth-brownie",
packages=find_packages(),
version="1.20.3", # don't change this manually, use bumpversion instead
version="1.20.4", # 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,
Expand Down

0 comments on commit 4886600

Please sign in to comment.