From 5eb501ae6ec1b361b3e5dc803bbdbf584cacd8c0 Mon Sep 17 00:00:00 2001 From: Ben Hauser Date: Sun, 29 Jan 2023 22:26:39 +0100 Subject: [PATCH] release: update changelog, bump version to v1.19.3 --- CHANGELOG.md | 10 ++++++---- brownie/_config.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 4 files changed, 9 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index eeb03f457..81812d8a4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,13 +6,15 @@ 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.3](https://github.com/eth-brownie/brownie/tree/v1.19.3) - 2023-01-29 ### Added -- Ganache 7.7.x support. +- Ganache 7.7.x support ([#1652](https://github.com/eth-brownie/brownie/pull/1652)) ### Fixed -- Anvil support, you can now access trace, events and return_value for anvil transactions. -- Removes `eth-abi` depreciation warnings -- Bump web3.py dep to support async provider in threaded applications +- Anvil support, you can now access trace, events and return_value for anvil transactions ([#1652](https://github.com/eth-brownie/brownie/pull/1652)) +- 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)) ## [1.19.2](https://github.com/eth-brownie/brownie/tree/v1.19.2) - 2022-10-16 ### Added diff --git a/brownie/_config.py b/brownie/_config.py index 9689e4471..89106c23f 100644 --- a/brownie/_config.py +++ b/brownie/_config.py @@ -19,7 +19,7 @@ from brownie._expansion import expand_posix_vars from brownie._singleton import _Singleton -__version__ = "1.19.2" +__version__ = "1.19.3" BROWNIE_FOLDER = Path(__file__).parent DATA_FOLDER = Path.home().joinpath(".brownie") diff --git a/setup.cfg b/setup.cfg index 753d0ca12..237770fbd 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.19.2 +current_version = 1.19.3 [bumpversion:file:setup.py] diff --git a/setup.py b/setup.py index 8006859df..c418daf76 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ setup( name="eth-brownie", packages=find_packages(), - version="1.19.2", # don't change this manually, use bumpversion instead + version="1.19.3", # 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,