Skip to content

Commit

Permalink
Merge pull request #839 from eth-brownie/v1.11.12
Browse files Browse the repository at this point in the history
v1.11.12
  • Loading branch information
iamdefinitelyahuman authored Nov 4, 2020
2 parents 1c7d2da + e295b52 commit 5ae34bd
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 3 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

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

## [1.11.12](https://github.com/eth-brownie/brownie/tree/v1.11.12) - 2020-11-04
### Added
- `timestamp` kwarg for `chain.mine` ([#838](https://github.com/eth-brownie/brownie/pull/838))
- `ETH_ADDRESS` constant ([#835](https://github.com/eth-brownie/brownie/pull/835))
- show nonce in console output for pending transactions ([#833](https://github.com/eth-brownie/brownie/pull/833))

### Fixed
- Allow use of `ProjectContract` in tx "from" field on development networks ([#836](https://github.com/eth-brownie/brownie/pull/836))
- Do not attempt to open debugging console when the failing test has not been collected due to a `SyntaxError` ([#834](https://github.com/eth-brownie/brownie/pull/834))

## [1.11.11](https://github.com/eth-brownie/brownie/tree/v1.11.11) - 2020-10-31
### Added
- `ZERO_ADDRESS` constant is now available from main namespace ([#830](https://github.com/eth-brownie/brownie/pull/830))
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.11"
__version__ = "1.11.12"

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.11
current_version = 1.11.12

[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.11", # don't change this manually, use bumpversion instead
version="1.11.12", # 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 5ae34bd

Please sign in to comment.