Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

V1.20.3 #1770

Merged
merged 2 commits into from
May 4, 2024
Merged

V1.20.3 #1770

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,17 @@ This changelog format is based on [Keep a Changelog](https://keepachangelog.com/
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

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

## [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))
- Support for blast chain contract verification ([#1765](https://github.com/eth-brownie/brownie/pull/1765))
- Support for additional anvil cmdline args ([#1756](https://github.com/eth-brownie/brownie/pull/1756))

### Fixed
- Target different blocks for live/dev networks when adding POA middleware ([#1769](https://github.com/eth-brownie/brownie/pull/1769))
- Dict keys for nested tuples in returndata ([#1768](https://github.com/eth-brownie/brownie/pull/1768))
- Solidity error code decoding ([#1758](https://github.com/eth-brownie/brownie/pull/1758))

## [1.20.2](https://github.com/eth-brownie/brownie/tree/v1.20.2) - 2024-02-24
### Added
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.2"
__version__ = "1.20.3"

BROWNIE_FOLDER = Path(__file__).parent
DATA_FOLDER = Path.home().joinpath(".brownie")
Expand Down
2 changes: 1 addition & 1 deletion brownie/network/contract.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@
"moonscan": "MOONSCAN_TOKEN",
"gnosisscan": "GNOSISSCAN_TOKEN",
"base": "BASESCAN_TOKEN",
"blast": "BLASTSCAN_TOKEN"
"blast": "BLASTSCAN_TOKEN",
}


Expand Down
2 changes: 1 addition & 1 deletion brownie/network/middlewares/caching.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ def start_block_filter_loop(self):

@classmethod
def get_layer(cls, w3: Web3, network_type: str) -> Optional[int]:
if CONFIG.settings['eager_caching'] is False:
if CONFIG.settings["eager_caching"] is False:
# do not cache when user doesn't want it
return None
if network_type != "live":
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.2
current_version = 1.20.3

[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.2", # don't change this manually, use bumpversion instead
version="1.20.3", # 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
Loading