Skip to content

Commit b383a8e

Browse files
release: update changelog, bump version to v1.20.0
1 parent 2f63336 commit b383a8e

File tree

4 files changed

+11
-3
lines changed

4 files changed

+11
-3
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.0](https://github.com/eth-brownie/brownie/tree/v1.20.0) - 2024-02-02
11+
### Changed
12+
- Add support for Python 3.12, drop support for Python 3.9 ([#1735](https://github.com/eth-brownie/brownie/pull/1735))
13+
14+
### Removed
15+
- Support for `pythx` ([#1733](https://github.com/eth-brownie/brownie/pull/1733))
16+
- Support for `ethpm` ([#1734](https://github.com/eth-brownie/brownie/pull/1734))
17+
1018
## [1.19.5](https://github.com/eth-brownie/brownie/tree/v1.19.5) - 2024-01-31
1119
### Added
1220
- Support for custom / typed errors ([#1728](https://github.com/eth-brownie/brownie/pull/1728))

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.19.5"
22+
__version__ = "1.20.0"
2323

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

setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 1.19.5
2+
current_version = 1.20.0
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.19.5", # don't change this manually, use bumpversion instead
27+
version="1.20.0", # 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)