Skip to content

Commit

Permalink
Merge pull request #1721 from eth-brownie/v1.19.4
Browse files Browse the repository at this point in the history
v1.9.4
  • Loading branch information
iamdefinitelyahuman authored Jan 29, 2024
2 parents 0602cca + c3a44b9 commit a60b232
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 14 deletions.
22 changes: 12 additions & 10 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,22 @@ This changelog format is based on [Keep a Changelog](https://keepachangelog.com/
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

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

## [1.19.4](https://github.com/eth-brownie/brownie/tree/v1.19.4) - 2024-01-29
### Added
- Added functional support for the following new chains:
- Sepolia
- Polygon zkEVM
- Optimisim (fixed explorer support)
- Gnosis Chain
- Chiado (Gnosis testnet)
- Base chain
- `viaIR` optimizer support ([#1572](https://github.com/eth-brownie/brownie/pull/1572))
- Silent transactions when calling a contract ([#1636](https://github.com/eth-brownie/brownie/pull/1636))
- Include encoded return data in transaction trace ([#1715](https://github.com/eth-brownie/brownie/pull/1715))
- `--no-compile` flag to avoid project recompilation ([#1507](https://github.com/eth-brownie/brownie/pull/1507))
- Support for various new EVM chains

### Changed
- set default vyper EVM version to `paris` ([#1684](https://github.com/eth-brownie/brownie/pull/1684))

### Fixed
- Force using utf-8 for reading contracts
- Force using utf-8 for reading contracts ([#1712](https://github.com/eth-brownie/brownie/pull/1712))
- Fix verification for same named files ([#1677](https://github.com/eth-brownie/brownie/pull/1677))
- `KeyError` when removing a contract ([#1689](https://github.com/eth-brownie/brownie/pull/1689))

## [1.19.3](https://github.com/eth-brownie/brownie/tree/v1.19.3) - 2023-01-29
### Added
Expand All @@ -28,8 +32,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Removes `eth-abi` depreciation warnings ([#1639](https://github.com/eth-brownie/brownie/pull/1639))
- Bump web3.py dep to support async provider in threaded applications ([#1664](https://github.com/eth-brownie/brownie/pull/1664))

- Add Hedera network integration ([#1658](https://github.com/eth-brownie/brownie/pull/1658))

## [1.19.2](https://github.com/eth-brownie/brownie/tree/v1.19.2) - 2022-10-16
### Added
- Support for remappings in `from_explorer` ([#1596](https://github.com/eth-brownie/brownie/pull/1596))
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.3"
__version__ = "1.19.4"

BROWNIE_FOLDER = Path(__file__).parent
DATA_FOLDER = Path.home().joinpath(".brownie")
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ py==1.11.0
# -r requirements.in
# pytest
# pytest-forked
py-solc-ast==1.2.9
py-solc-ast==1.2.10
# via -r requirements.in
py-solc-x==1.1.1
# via -r requirements.in
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.3
current_version = 1.19.4

[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.3", # don't change this manually, use bumpversion instead
version="1.19.4", # 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 a60b232

Please sign in to comment.