Skip to content

Commit c3ece24

Browse files
release: update changelog, bump deps, bump version to v1.20.2
1 parent ebf8c83 commit c3ece24

7 files changed

+86
-105
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,14 @@ 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.20.2](https://github.com/eth-brownie/brownie/tree/v1.20.2) - 2024-02-24
11+
### Added
12+
- Support for vyper `0.3.10` new pragma format ([#1747](https://github.com/eth-brownie/brownie/pull/1747))
13+
14+
### Fixed
15+
- Reset `multicall` call code even if call reverts ([#1746](https://github.com/eth-brownie/brownie/pull/1746))
16+
- `TypeError` when outputting custom errors ([#1751](https://github.com/eth-brownie/brownie/pull/1751))
17+
1018
## [1.20.1](https://github.com/eth-brownie/brownie/tree/v1.20.1) - 2024-02-12
1119
### Added
1220
- verbose option for `multicall` debugging ([#1743](https://github.com/eth-brownie/brownie/pull/1743))

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.20.1"
22+
__version__ = "1.20.2"
2323

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

requirements-dev.txt

+14-26
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# This file is autogenerated by pip-compile with Python 3.10
2+
# This file is autogenerated by pip-compile with Python 3.11
33
# by the following command:
44
#
55
# pip-compile requirements-dev.in
@@ -12,7 +12,7 @@ attrs==23.2.0
1212
# pytest
1313
babel==2.14.0
1414
# via sphinx
15-
black==24.1.1
15+
black==24.2.0
1616
# via
1717
# -c requirements.txt
1818
# -r requirements-dev.in
@@ -24,7 +24,7 @@ bumpversion==0.6.0
2424
# via -r requirements-dev.in
2525
cachetools==5.3.2
2626
# via tox
27-
certifi==2023.11.17
27+
certifi==2024.2.2
2828
# via
2929
# -c requirements.txt
3030
# requests
@@ -43,11 +43,11 @@ click==8.1.7
4343
# pip-tools
4444
colorama==0.4.6
4545
# via tox
46-
coverage[toml]==7.4.1
46+
coverage[toml]==7.4.3
4747
# via
4848
# -r requirements-dev.in
4949
# pytest-cov
50-
cryptography==42.0.2
50+
cryptography==42.0.5
5151
# via secretstorage
5252
distlib==0.3.8
5353
# via virtualenv
@@ -79,7 +79,7 @@ iniconfig==2.0.0
7979
# pytest
8080
isort==5.13.2
8181
# via -r requirements-dev.in
82-
jaraco-classes==3.3.0
82+
jaraco-classes==3.3.1
8383
# via keyring
8484
jeepney==0.8.0
8585
# via
@@ -118,7 +118,7 @@ pathspec==0.12.1
118118
# via
119119
# -c requirements.txt
120120
# black
121-
pip-tools==7.3.0
121+
pip-tools==7.4.0
122122
# via -r requirements-dev.in
123123
pkginfo==1.9.6
124124
# via twine
@@ -157,7 +157,9 @@ pygments-lexer-solidity==0.7.0
157157
pyproject-api==1.6.1
158158
# via tox
159159
pyproject-hooks==1.0.0
160-
# via build
160+
# via
161+
# build
162+
# pip-tools
161163
pytest==6.2.5
162164
# via
163165
# -c requirements.txt
@@ -210,30 +212,16 @@ toml==0.10.2
210212
# via
211213
# -c requirements.txt
212214
# pytest
213-
tomli==2.0.1
214-
# via
215-
# -c requirements.txt
216-
# black
217-
# build
218-
# coverage
219-
# pip-tools
220-
# pyproject-api
221-
# pyproject-hooks
222-
# tox
223-
tox==4.12.1
215+
tox==4.13.0
224216
# via -r requirements-dev.in
225-
twine==4.0.2
217+
twine==5.0.0
226218
# via -r requirements-dev.in
227-
typing-extensions==4.9.0
228-
# via
229-
# -c requirements.txt
230-
# black
231-
urllib3==2.2.0
219+
urllib3==2.2.1
232220
# via
233221
# -c requirements.txt
234222
# requests
235223
# twine
236-
virtualenv==20.25.0
224+
virtualenv==20.25.1
237225
# via tox
238226
wheel==0.42.0
239227
# via

0 commit comments

Comments
 (0)