From ebf59d2da9c7c017d7c78cde20f970019d34edb5 Mon Sep 17 00:00:00 2001 From: Ben Hauser Date: Sun, 13 Sep 2020 21:37:29 +0300 Subject: [PATCH] release: update changelog, bump version to v1.11.4 --- CHANGELOG.md | 14 +++++++++++++- brownie/_config.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 4 files changed, 16 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7ee0fab05..949b9cc9e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,9 +6,21 @@ 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.11.4](https://github.com/eth-brownie/brownie/tree/v1.11.4) - 2020-09-13 +### Added +- Default interfaces in `InterfaceContainer` ([#754](https://github.com/eth-brownie/brownie/pull/754)) +- `--size` flag for `brownie compile` to see deployed bytecode sizes ([#750](https://github.com/eth-brownie/brownie/pull/750)) + +### Changed +- Improve error message for `AttributeError` from `ProjectContract` ([#753](https://github.com/eth-brownie/brownie/pull/753)) + +### Fixed +- Check min solc version when using `Contract.from_explorer` ([#752](https://github.com/eth-brownie/brownie/pull/752)) +- Issues related to interfaces and contracts using the same name ([#751](https://github.com/eth-brownie/brownie/pull/751)) + ## [1.11.3](https://github.com/eth-brownie/brownie/tree/v1.11.3) - 2020-09-11 ### Added -`InterfaceConstructor.selectors` ([#748](https://github.com/eth-brownie/brownie/pull/748)) +- `InterfaceConstructor.selectors` ([#748](https://github.com/eth-brownie/brownie/pull/748)) ### Fixed - Ensure `VirtualMachineError.__str__` always returns a string ([#747](https://github.com/eth-brownie/brownie/pull/747)) diff --git a/brownie/_config.py b/brownie/_config.py index 37c5a101a..86c61f9d6 100644 --- a/brownie/_config.py +++ b/brownie/_config.py @@ -17,7 +17,7 @@ from brownie._singleton import _Singleton -__version__ = "1.11.3" +__version__ = "1.11.4" BROWNIE_FOLDER = Path(__file__).parent DATA_FOLDER = Path.home().joinpath(".brownie") diff --git a/setup.cfg b/setup.cfg index cc714bc00..b00f5d8c7 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.11.3 +current_version = 1.11.4 [bumpversion:file:setup.py] diff --git a/setup.py b/setup.py index a8aaf1582..4ece58919 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ setup( name="eth-brownie", packages=find_packages(), - version="1.11.3", # don't change this manually, use bumpversion instead + version="1.11.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,