diff --git a/CHANGELOG.md b/CHANGELOG.md index 4fa256727..58a66d5b0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,20 @@ 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.17.1](https://github.com/eth-brownie/brownie/tree/v1.17.1) - 2021-11-07 +### Added - Add support for `ARBISCAN_TOKEN` env var ([#1319](https://github.com/eth-brownie/brownie/pull/1319)) +- Add Avalanche to default networks and support for snowtrace ([#1332](https://github.com/eth-brownie/brownie/pull/1332)) + +### Changed +- Transactions are rebroadcasted until they appear in the mempool ([#1327](https://github.com/eth-brownie/brownie/pull/1327)) +- Avoid caching on chains with short blocktimes ([#1297](https://github.com/eth-brownie/brownie/pull/1297)) + +### Fixed +- Match single/double quote paths in source verification ([#1323](https://github.com/eth-brownie/brownie/pull/1323)) +- Change use of `getcontext()` ([#1310](https://github.com/eth-brownie/brownie/pull/1310)) +- IPv6-aware Hardhat ([#1309](https://github.com/eth-brownie/brownie/pull/1309)) ## [1.17.0](https://github.com/eth-brownie/brownie/tree/v1.17.0) - 2021-10-13 ### Added diff --git a/brownie/_config.py b/brownie/_config.py index 885aa5ac6..878ebaafc 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.17.0" +__version__ = "1.17.1" BROWNIE_FOLDER = Path(__file__).parent DATA_FOLDER = Path.home().joinpath(".brownie") diff --git a/setup.cfg b/setup.cfg index a02b5eb4f..0b5a43614 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.17.0 +current_version = 1.17.1 [bumpversion:file:setup.py] diff --git a/setup.py b/setup.py index 9021db44c..b19fb9c3c 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ setup( name="eth-brownie", packages=find_packages(), - version="1.17.0", # don't change this manually, use bumpversion instead + version="1.17.1", # 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,