Skip to content

Commit

Permalink
Merge pull request #805 from eth-brownie/v1.11.9
Browse files Browse the repository at this point in the history
v1.11.9
  • Loading branch information
iamdefinitelyahuman authored Oct 11, 2020
2 parents f440dd3 + d509ac9 commit d6c4625
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.11.9](https://github.com/eth-brownie/brownie/tree/v1.11.9) - 2020-10-11
### Added
- `TxHistory.filter` method ([#804](https://github.com/eth-brownie/brownie/pull/804))
- Allow force-compiling of specific contracts in CLI ([#802](https://github.com/eth-brownie/brownie/pull/802))

### Fixed
- Include `vyper` library version in installed versions, after installing a new version ([#803](https://github.com/eth-brownie/brownie/pull/803))
- Understand `Contract` objects in the `from` field of a transaction dict ([#801](https://github.com/eth-brownie/brownie/pull/801))

## [1.11.8](https://github.com/eth-brownie/brownie/tree/v1.11.8) - 2020-10-07
### Added
- Automatically add `tx` as a local variable during interactive debugging ([#796](https://github.com/eth-brownie/brownie/pull/796))
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.8"
__version__ = "1.11.9"

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.8
current_version = 1.11.9

[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.8", # don't change this manually, use bumpversion instead
version="1.11.9", # 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 d6c4625

Please sign in to comment.