Skip to content

Commit 1c532b1

Browse files
Merge pull request #1265 from eth-brownie/v1.16.4
v1.16.4
2 parents 11a3ba7 + 8020a78 commit 1c532b1

7 files changed

+29
-17
lines changed

CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

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

10+
## [1.16.4](https://github.com/eth-brownie/brownie/tree/v1.16.4) - 2021-09-21
11+
### Added
12+
- Add `only_confirmed` as an optional kwarg for `history.clear` ([#1251](https://github.com/eth-brownie/brownie/pull/1251))
13+
- Add `.env` to default project gitignore ([#1249](https://github.com/eth-brownie/brownie/pull/1249))
14+
15+
### Changed
16+
- Allow numbers in project names ([#1254](https://github.com/eth-brownie/brownie/pull/1254))
17+
18+
### Fixed
19+
- Various Arbitrum related fixes ([#1255](https://github.com/eth-brownie/brownie/pull/1255))
20+
- Pass solc version when compiling ABI ([#1243](https://github.com/eth-brownie/brownie/pull/1243))
21+
- Correctly handle Erigon traces ([#1245](https://github.com/eth-brownie/brownie/pull/1245))
22+
- Replace EIP1559 tx's with the same tx type ([#1250](https://github.com/eth-brownie/brownie/pull/1250))
23+
1024
## [1.16.3](https://github.com/eth-brownie/brownie/tree/v1.16.3) - 2021-09-04
1125
### Added
1226
- Add API token to verify sources on ftmscan ([#1226](https://github.com/eth-brownie/brownie/pull/1226))

brownie/_config.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
from brownie._expansion import expand_posix_vars
2020
from brownie._singleton import _Singleton
2121

22-
__version__ = "1.16.3"
22+
__version__ = "1.16.4"
2323

2424
BROWNIE_FOLDER = Path(__file__).parent
2525
DATA_FOLDER = Path.home().joinpath(".brownie")

brownie/test/stateful.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,9 @@ def execute_step(self, step):
4545
type(self)._failed = True
4646
raise
4747

48-
def check_invariants(self):
48+
def check_invariants(self, settings):
4949
try:
50-
super().check_invariants()
50+
super().check_invariants(settings)
5151
except Exception:
5252
type(self)._failed = True
5353
raise

requirements-windows.txt

+5-6
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ bitarray==1.2.2
3131
# via
3232
# -r requirements.txt
3333
# eth-account
34-
black==21.8b0
34+
black==21.9b0
3535
# via -r requirements.txt
3636
certifi==2021.5.30
3737
# via
@@ -41,7 +41,7 @@ chardet==4.0.0
4141
# via
4242
# -r requirements.txt
4343
# aiohttp
44-
charset-normalizer==2.0.4
44+
charset-normalizer==2.0.6
4545
# via
4646
# -r requirements.txt
4747
# requests
@@ -126,7 +126,7 @@ hexbytes==0.2.2
126126
# eth-event
127127
# eth-rlp
128128
# web3
129-
hypothesis==6.17.4
129+
hypothesis==6.21.6
130130
# via -r requirements.txt
131131
idna==3.2
132132
# via
@@ -200,7 +200,7 @@ pluggy==1.0.0
200200
# pytest
201201
prompt-toolkit==3.0.20
202202
# via -r requirements.txt
203-
protobuf==3.17.3
203+
protobuf==3.18.0
204204
# via
205205
# -r requirements.txt
206206
# web3
@@ -292,7 +292,6 @@ six==1.16.0
292292
# jsonschema
293293
# multiaddr
294294
# parsimonious
295-
# protobuf
296295
# pytest-xdist
297296
# python-dateutil
298297
sortedcontainers==2.4.0
@@ -311,7 +310,7 @@ toolz==0.11.1
311310
# via
312311
# -r requirements.txt
313312
# cytoolz
314-
tqdm==4.62.2
313+
tqdm==4.62.3
315314
# via -r requirements.txt
316315
typing-extensions==3.10.0.2
317316
# via

requirements.txt

+5-6
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@ base58==2.1.0
2020
# via multiaddr
2121
bitarray==1.2.2
2222
# via eth-account
23-
black==21.8b0
23+
black==21.9b0
2424
# via -r requirements.in
2525
certifi==2021.5.30
2626
# via requests
2727
chardet==4.0.0
2828
# via aiohttp
29-
charset-normalizer==2.0.4
29+
charset-normalizer==2.0.6
3030
# via requests
3131
click==8.0.1
3232
# via black
@@ -94,7 +94,7 @@ hexbytes==0.2.2
9494
# eth-event
9595
# eth-rlp
9696
# web3
97-
hypothesis==6.17.4
97+
hypothesis==6.21.6
9898
# via -r requirements.in
9999
idna==3.2
100100
# via
@@ -140,7 +140,7 @@ pluggy==1.0.0
140140
# via pytest
141141
prompt-toolkit==3.0.20
142142
# via -r requirements.in
143-
protobuf==3.17.3
143+
protobuf==3.18.0
144144
# via web3
145145
psutil==5.8.0
146146
# via -r requirements.in
@@ -217,7 +217,6 @@ six==1.16.0
217217
# jsonschema
218218
# multiaddr
219219
# parsimonious
220-
# protobuf
221220
# pytest-xdist
222221
# python-dateutil
223222
sortedcontainers==2.4.0
@@ -228,7 +227,7 @@ tomli==1.2.1
228227
# via black
229228
toolz==0.11.1
230229
# via cytoolz
231-
tqdm==4.62.2
230+
tqdm==4.62.3
232231
# via -r requirements.in
233232
typing-extensions==3.10.0.2
234233
# via

setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 1.16.3
2+
current_version = 1.16.4
33

44
[bumpversion:file:setup.py]
55

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
setup(
2525
name="eth-brownie",
2626
packages=find_packages(),
27-
version="1.16.3", # don't change this manually, use bumpversion instead
27+
version="1.16.4", # don't change this manually, use bumpversion instead
2828
license="MIT",
2929
description="A Python framework for Ethereum smart contract deployment, testing and interaction.", # noqa: E501
3030
long_description=long_description,

0 commit comments

Comments
 (0)