Skip to content

Commit

Permalink
Merge pull request #1291 from eth-brownie/v1.17.0
Browse files Browse the repository at this point in the history
v1.17.0
  • Loading branch information
iamdefinitelyahuman authored Oct 12, 2021
2 parents 38cdf8d + 494c7a3 commit 1eeb5b3
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
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.16.4"
__version__ = "1.17.0"

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.16.4
current_version = 1.17.0

[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.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,
Expand Down

0 comments on commit 1eeb5b3

Please sign in to comment.