Skip to content

Commit

Permalink
Merge pull request #921 from eth-brownie/v1.12.4
Browse files Browse the repository at this point in the history
v1.12.4
  • Loading branch information
iamdefinitelyahuman authored Jan 4, 2021
2 parents 897b154 + 3f0c0a4 commit 0a08efc
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 3 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased](https://github.com/eth-brownie/brownie)

## [1.12.4](https://github.com/eth-brownie/brownie/tree/v1.12.4) - 2021-01-03
### Changed
- Use `ReturnType` instead of `list` for some `_EventItem` return values ([#919](https://github.com/eth-brownie/brownie/pull/919))
- Only decode events in reverting transactions upon request ([#920](https://github.com/eth-brownie/brownie/pull/920))

### Fixed
- Correctly handle malformed calldata in subcalls ([#913](https://github.com/eth-brownie/brownie/pull/913))
- Brownie bake uses the default branch instead of assuming `master` ([#917](https://github.com/eth-brownie/brownie/pull/917))

## [1.12.3](https://github.com/eth-brownie/brownie/tree/v1.12.3) - 2020-12-26
### Added
- Exposed `chain_id` and `network_id` ganache-cli parameters. Forked networks retain `chain_id`. ([#908](https://github.com/eth-brownie/brownie/pull/908))
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.12.3"
__version__ = "1.12.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.12.3
current_version = 1.12.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.12.3", # don't change this manually, use bumpversion instead
version="1.12.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 0a08efc

Please sign in to comment.