Skip to content

Commit

Permalink
Merge pull request #990 from eth-brownie/v1.13.4
Browse files Browse the repository at this point in the history
v1.13.4
  • Loading branch information
iamdefinitelyahuman authored Mar 14, 2021
2 parents 74f2cbf + eaf7095 commit 6c6fcfa
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 @@ -7,10 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

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

## [1.13.4](https://github.com/eth-brownie/brownie/tree/v1.13.4) - 2021-03-14
### Added
- Detect EIP-1167 and Vyper minimal proxies ([#984](https://github.com/eth-brownie/brownie/pull/984))
- Decode ds-note events ([#985](https://github.com/eth-brownie/brownie/pull/985))

### Changed
- During pytest interactive debugging , `continue` now exits the console to run the next test ([#989](https://github.com/eth-brownie/brownie/pull/989))

### Fixed
- Issue around the "optimizer revert" in solidity 0.8.2 ([#988](https://github.com/eth-brownie/brownie/pull/988))

## [1.13.3](https://github.com/eth-brownie/brownie/tree/v1.13.3) - 2021-03-08
### Added
- Option to choose console editting mode ([#970](https://github.com/eth-brownie/brownie/pull/970))
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.13.3"
__version__ = "1.13.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.13.3
current_version = 1.13.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.13.3", # don't change this manually, use bumpversion instead
version="1.13.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 6c6fcfa

Please sign in to comment.