Skip to content

Commit

Permalink
Merge pull request #1548 from eth-brownie/v1.19.0
Browse files Browse the repository at this point in the history
v1.19.0
  • Loading branch information
iamdefinitelyahuman authored May 29, 2022
2 parents 05ec52b + f24d92e commit c01ff90
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 9 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,13 @@ 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.19.0](https://github.com/eth-brownie/brownie/tree/v1.19.0) - 2022-05-29
### Added
- Initial support for [Anvil](https://github.com/foundry-rs/foundry/tree/master/anvil), a blazing-fast local testnet node implementation in Rust ([#1541](https://github.com/eth-brownie/brownie/pull/1541))

### Fixed
- `StopIteration` when compiling some Vyper `v0.3.3` contracts ([#1547](https://github.com/eth-brownie/brownie/pull/1547))

## [1.18.2](https://github.com/eth-brownie/brownie/tree/v1.18.2) - 2022-05-15
### 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.18.2"
__version__ = "1.19.0"

BROWNIE_FOLDER = Path(__file__).parent
DATA_FOLDER = Path.home().joinpath(".brownie")
Expand Down
6 changes: 3 additions & 3 deletions requirements-windows.txt
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ bitarray==1.2.2
# eth-account
black==22.3.0
# via -r requirements.txt
certifi==2021.10.8
certifi==2022.5.18.1
# via
# -r requirements.txt
# requests
Expand Down Expand Up @@ -210,7 +210,7 @@ protobuf==3.20.1
# via
# -r requirements.txt
# web3
psutil==5.9.0
psutil==5.9.1
# via -r requirements.txt
py==1.11.0
# via
Expand Down Expand Up @@ -330,7 +330,7 @@ wcwidth==0.2.5
# via
# -r requirements.txt
# prompt-toolkit
web3==5.29.0
web3==5.29.1
# via -r requirements.txt
websockets==9.1
# via
Expand Down
6 changes: 3 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ bitarray==1.2.2
# via eth-account
black==22.3.0
# via -r requirements.in
certifi==2021.10.8
certifi==2022.5.18.1
# via requests
charset-normalizer==2.0.12
# via
Expand Down Expand Up @@ -150,7 +150,7 @@ prompt-toolkit==3.0.29
# via -r requirements.in
protobuf==3.20.1
# via web3
psutil==5.9.0
psutil==5.9.1
# via -r requirements.in
py==1.11.0
# via
Expand Down Expand Up @@ -245,7 +245,7 @@ vyper==0.3.3
# via -r requirements.in
wcwidth==0.2.5
# via prompt-toolkit
web3==5.29.0
web3==5.29.1
# via -r requirements.in
websockets==9.1
# via web3
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.18.2
current_version = 1.19.0

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

Please sign in to comment.