Skip to content

Commit

Permalink
Merge pull request #755 from eth-brownie/v1.11.4
Browse files Browse the repository at this point in the history
v1.11.4
  • Loading branch information
iamdefinitelyahuman authored Sep 13, 2020
2 parents ba14902 + ebf59d2 commit 260606b
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 4 deletions.
14 changes: 13 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down
2 changes: 1 addition & 1 deletion brownie/_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")
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.11.3
current_version = 1.11.4

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

0 comments on commit 260606b

Please sign in to comment.