Skip to content

Commit

Permalink
Merge pull request #927 from eth-brownie/v1.13.0
Browse files Browse the repository at this point in the history
 v1.13.0
  • Loading branch information
iamdefinitelyahuman authored Jan 9, 2021
2 parents 6bc75f6 + 913d144 commit b9cd3a4
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,15 @@ 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.13.0](https://github.com/eth-brownie/brownie/tree/v1.13.0) - 2021-01-09
### Added
- Automatic source code verification on etherscan ([#919](https://github.com/eth-brownie/brownie/pull/914))
- Automatic source code verification on Etherscan ([#914](https://github.com/eth-brownie/brownie/pull/914))
- Allow replacing transactions that were broadcasted outside of Brownie ([#922](https://github.com/eth-brownie/brownie/pull/922))
- Add `decode_input`, `decode_output` and `info` methods to `OverloadedMethod` object ([#925](https://github.com/eth-brownie/brownie/pull/925))

### Changed
- Lazily decode events for confirmed transactions ([#926](https://github.com/eth-brownie/brownie/pull/926))

## [1.12.4](https://github.com/eth-brownie/brownie/tree/v1.12.4) - 2021-01-03
### Changed
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.4"
__version__ = "1.13.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.12.4
current_version = 1.13.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 @@ -11,7 +11,7 @@
setup(
name="eth-brownie",
packages=find_packages(),
version="1.12.4", # don't change this manually, use bumpversion instead
version="1.13.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 b9cd3a4

Please sign in to comment.