From 494c7a32def674cef1ca270e6c0dbc133ca35161 Mon Sep 17 00:00:00 2001 From: Ben Hauser Date: Wed, 13 Oct 2021 02:00:06 +0400 Subject: [PATCH] release: update changelog, bump version to v1.17.0 --- CHANGELOG.md | 7 +++++++ brownie/_config.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 4 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4bb6d0c90..a1d39b410 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,12 +6,19 @@ 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.0](https://github.com/eth-brownie/brownie/tree/v1.17.0) - 2021-10-13 ### Added - Arguments from the command line can now be passed to brownie scripts. ([#398](https://github.com/eth-brownie/brownie/issues/398)) - Fix etherscan verification w/ new solidity flattener ([#1283](https://github.com/eth-brownie/brownie/pull/1283)) - Drop py36 support and add py39 to CI/dev tooling ([#1289](https://github.com/eth-brownie/brownie/pull/1289)) - Bump dependencies ([#1277](https://github.com/eth-brownie/brownie/pull/1277)) - Fix missing source in source object, grab from filesystem ([#1290](https://github.com/eth-brownie/brownie/pull/1290)) +- Add harmony mainnet to default network config([#1286](https://github.com/eth-brownie/brownie/pull/1286)) +- Better panic messages for contract calls ([#1275](https://github.com/eth-brownie/brownie/pull/1275)) + +### Fixed +- Handle missing `gasPrice` in `eth_getTransaction` ([#1285](https://github.com/eth-brownie/brownie/pull/1285)) ## [1.16.4](https://github.com/eth-brownie/brownie/tree/v1.16.4) - 2021-09-21 ### Added diff --git a/brownie/_config.py b/brownie/_config.py index 203478421..885aa5ac6 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.16.4" +__version__ = "1.17.0" BROWNIE_FOLDER = Path(__file__).parent DATA_FOLDER = Path.home().joinpath(".brownie") diff --git a/setup.cfg b/setup.cfg index db46a970c..a02b5eb4f 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.16.4 +current_version = 1.17.0 [bumpversion:file:setup.py] diff --git a/setup.py b/setup.py index f22110f0a..9021db44c 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ setup( name="eth-brownie", packages=find_packages(), - version="1.16.4", # don't change this manually, use bumpversion instead + version="1.17.0", # 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,