Skip to content

Commit

Permalink
Merge pull request #1777 from eth-brownie/v1.20.5
Browse files Browse the repository at this point in the history
v1.20.5
  • Loading branch information
iamdefinitelyahuman committed May 22, 2024
2 parents e24b9ad + ef47c36 commit a7daa70
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

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

## [1.20.5](https://github.com/eth-brownie/brownie/tree/v1.20.5) - 2024-05-22
### Fixed
- Handle missing `blockNumber` while awaiting confirmation ([#1774](https://github.com/eth-brownie/brownie/pull/1774))
- Search parent paths for file import during source verification ([#1776](https://github.com/eth-brownie/brownie/pull/1776))

## [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))
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.4"
__version__ = "1.20.5"

BROWNIE_FOLDER = Path(__file__).parent
DATA_FOLDER = Path.home().joinpath(".brownie")
Expand Down
4 changes: 3 additions & 1 deletion brownie/network/transaction.py
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,9 @@ def __init__(
# await confirmation of tx in a separate thread which is blocking if
# required_confs > 0 or tx has already confirmed (`blockNumber` != None)
confirm_thread = threading.Thread(
target=self._await_confirmation, args=(tx.get("blockNumber"), required_confs), daemon=True
target=self._await_confirmation,
args=(tx.get("blockNumber"), required_confs),
daemon=True,
)
confirm_thread.start()
if is_blocking and (required_confs > 0 or tx.get("blockNumber")):
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.4
current_version = 1.20.5

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

Please sign in to comment.