Skip to content

Commit

Permalink
Merge pull request #911 from eth-brownie/v1.12.3
Browse files Browse the repository at this point in the history
 v1.12.3
  • Loading branch information
iamdefinitelyahuman authored Dec 26, 2020
2 parents 1fca2e1 + 7076a75 commit b99975d
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 7 deletions.
12 changes: 10 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +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.12.3](https://github.com/eth-brownie/brownie/tree/v1.12.3) - 2020-12-26
### Added
- Exposed `chain_id` and `network_id` ganache-cli parameters. Forked networks retain `chain_id`. ([#908](https://github.com/eth-brownie/brownie/pull/908))
- Show more information about events in `TransactionReceipt.info` ([#898](https://github.com/eth-brownie/brownie/pull/898))
- Support for Solidity error codes ([#906](https://github.com/eth-brownie/brownie/pull/906))
- `TxHistory.wait` to wait for all pending transactions ([#910](https://github.com/eth-brownie/brownie/pull/910))

### Fixed
- Handle missing source nodes due to Yul optimizer ([#895](https://github.com/eth-brownie/brownie/pull/895))
- Typo in link to mixes ([#886](https://github.com/eth-brownie/brownie/pull/886))

- Fixes for tracebacks and dev revert strings in Solidity 0.8.x ([#907](https://github.com/eth-brownie/brownie/pull/907))
- Console output for automatically repriced transactions ([#909](https://github.com/eth-brownie/brownie/pull/909))

## [1.12.2](https://github.com/eth-brownie/brownie/tree/v1.12.2) - 2020-12-04
### Added
Expand All @@ -21,7 +29,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed
- Build artifacts for dependencies are now saved at `build/contracts/dependencies` ([#878](https://github.com/eth-brownie/brownie/pull/878))

#### Fixed
### Fixed
- Ensure receiver address is checksummed when calling `eth_estimateGas` ([#880](https://github.com/eth-brownie/brownie/pull/880))

## [1.12.1](https://github.com/eth-brownie/brownie/tree/v1.12.1) - 2020-11-28
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.2"
__version__ = "1.12.3"

BROWNIE_FOLDER = Path(__file__).parent
DATA_FOLDER = Path.home().joinpath(".brownie")
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ hypothesis==5.41.3
prompt-toolkit==3.0.8
psutil>=5.7.3,<6.0.0
py>=1.5.0
py-solc-ast>=1.2.6,<2.0.0
py-solc-x>=1.0.1,<2.0.0
py-solc-ast>=1.2.7,<2.0.0
py-solc-x>=1.0.2,<2.0.0
pygments==2.6.1
pygments_lexer_solidity==0.5.1
pytest==6.0.1
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.2
current_version = 1.12.3

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

Please sign in to comment.