Skip to content

Commit

Permalink
Merge pull request #1219 from eth-brownie/v1.16.2
Browse files Browse the repository at this point in the history
v1.16.2
  • Loading branch information
iamdefinitelyahuman committed Aug 24, 2021
2 parents 9e75a6b + bb67314 commit 29657f9
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 11 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.16.2](https://github.com/eth-brownie/brownie/tree/v1.16.2) - 2021-08-24
### Added
- Allow specifying password when saving an account ([#1216](https://github.com/eth-brownie/brownie/pull/1216))

### Fixed
- Hardhat revert string format ([#1218](https://github.com/eth-brownie/brownie/pull/1218))
- Clef formatter for EIP-1559 transactions ([#1211](https://github.com/eth-brownie/brownie/pull/1211))

## [1.16.1](https://github.com/eth-brownie/brownie/tree/v1.16.1) - 2021-08-16
### Added
- Set default values for `max_fee` and `priority_fee` ([#1206](https://github.com/eth-brownie/brownie/pull/1206))
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.16.1"
__version__ = "1.16.2"

BROWNIE_FOLDER = Path(__file__).parent
DATA_FOLDER = Path.home().joinpath(".brownie")
Expand Down
8 changes: 4 additions & 4 deletions requirements-windows.txt
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ hexbytes==0.2.1
# eth-event
# eth-rlp
# web3
hypothesis==6.14.7
hypothesis==6.15.0
# via -r requirements.txt
idna==3.2
# via
Expand Down Expand Up @@ -199,7 +199,7 @@ pluggy==0.13.1
# via
# -r requirements.txt
# pytest
prompt-toolkit==3.0.19
prompt-toolkit==3.0.20
# via -r requirements.txt
protobuf==3.17.3
# via
Expand Down Expand Up @@ -263,7 +263,7 @@ pythx==1.6.1
# via -r requirements.txt
pyyaml==5.4.1
# via -r requirements.txt
regex==2021.8.3
regex==2021.8.21
# via
# -r requirements.txt
# black
Expand Down Expand Up @@ -312,7 +312,7 @@ toolz==0.11.1
# via
# -r requirements.txt
# cytoolz
tqdm==4.62.1
tqdm==4.62.2
# via -r requirements.txt
typing-extensions==3.10.0.0
# via
Expand Down
8 changes: 4 additions & 4 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ hexbytes==0.2.1
# eth-event
# eth-rlp
# web3
hypothesis==6.14.7
hypothesis==6.15.0
# via -r requirements.in
idna==3.2
# via
Expand Down Expand Up @@ -139,7 +139,7 @@ pathspec==0.9.0
# via black
pluggy==0.13.1
# via pytest
prompt-toolkit==3.0.19
prompt-toolkit==3.0.20
# via -r requirements.in
protobuf==3.17.3
# via web3
Expand Down Expand Up @@ -191,7 +191,7 @@ pythx==1.6.1
# via -r requirements.in
pyyaml==5.4.1
# via -r requirements.in
regex==2021.8.3
regex==2021.8.21
# via black
requests==2.26.0
# via
Expand Down Expand Up @@ -229,7 +229,7 @@ tomli==1.2.1
# via black
toolz==0.11.1
# via cytoolz
tqdm==4.62.1
tqdm==4.62.2
# via -r requirements.in
typing-extensions==3.10.0.0
# via aiohttp
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.16.1
current_version = 1.16.2

[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.16.1", # don't change this manually, use bumpversion instead
version="1.16.2", # 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 29657f9

Please sign in to comment.