Skip to content

Commit

Permalink
Merge pull request #1783 from eth-brownie/v1.20.6
Browse files Browse the repository at this point in the history
v1.20.6
  • Loading branch information
iamdefinitelyahuman authored Jun 22, 2024
2 parents 45314ef + 9d387b4 commit 65d2fce
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

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

## [1.20.6](https://github.com/eth-brownie/brownie/tree/v1.20.6) - 2024-06-22
### Added
- `include` kwarg for address strategy, type-dependent strategy overloads ([#1780](https://github.com/eth-brownie/brownie/pull/1780))

### Fixed
- ds-note decoding ([#1781](https://github.com/eth-brownie/brownie/pull/1781))
- "Dropped without known replacement" tx race condition ([#1782](https://github.com/eth-brownie/brownie/pull/1782))

## [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))
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.5"
__version__ = "1.20.6"

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.5
current_version = 1.20.6

[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.5", # don't change this manually, use bumpversion instead
version="1.20.6", # 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 65d2fce

Please sign in to comment.