Skip to content

Commit

Permalink
Merge pull request #832 from eth-brownie/v1.11.11
Browse files Browse the repository at this point in the history
v1.11.11
  • Loading branch information
iamdefinitelyahuman authored Oct 30, 2020
2 parents 5b3950c + 0fa3771 commit a22fc0f
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 3 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,19 @@ 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.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))
- Include nonce in `stdout` output when broadcasting a transaction ([#833](https://github.com/eth-brownie/brownie/pull/833))

### Changed
- `brownie bake` project names are no longer case sensetive ([#829](https://github.com/eth-brownie/brownie/pull/829))

### Fixed
- Handle `str` when looking at traceback paths ([#823](https://github.com/eth-brownie/brownie/pull/823))
- Add `__ne__` to `ReturnValue` object ([#831](https://github.com/eth-brownie/brownie/pull/831))

## [1.11.10](https://github.com/eth-brownie/brownie/tree/v1.11.10) - 2020-10-23
### Changed
- During testing, do not connect to network until immediately before running tests ([#819](https://github.com/eth-brownie/brownie/pull/819))
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.10"
__version__ = "1.11.11"

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.10
current_version = 1.11.11

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

Please sign in to comment.