Skip to content

Commit

Permalink
release: update changelog, bump version to 1.19.5
Browse files Browse the repository at this point in the history
  • Loading branch information
iamdefinitelyahuman committed Jan 31, 2024
1 parent 384c6c3 commit 67f66f5
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 3 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

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

## [1.19.5](https://github.com/eth-brownie/brownie/tree/v1.19.5) - 2024-01-31
### Added
- Support for custom / typed errors ([#1728](https://github.com/eth-brownie/brownie/pull/1728))

### Changed
- Default to EIP1559-style transactions on live networks ([#1727](https://github.com/eth-brownie/brownie/pull/1727))

### Fixed
- Readthedocs missing config file ([#1729](https://github.com/eth-brownie/brownie/pull/1729))

## [1.19.4](https://github.com/eth-brownie/brownie/tree/v1.19.4) - 2024-01-29
### Added
- `viaIR` optimizer support ([#1572](https://github.com/eth-brownie/brownie/pull/1572))
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.19.4"
__version__ = "1.19.5"

BROWNIE_FOLDER = Path(__file__).parent
DATA_FOLDER = Path.home().joinpath(".brownie")
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.19.4
current_version = 1.19.5

[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.19.4", # don't change this manually, use bumpversion instead
version="1.19.5", # 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 67f66f5

Please sign in to comment.