Skip to content

Commit

Permalink
Merge pull request #641 from eth-brownie/v1.9.3
Browse files Browse the repository at this point in the history
v1.9.3
  • Loading branch information
iamdefinitelyahuman committed Jun 19, 2020
2 parents 53cd093 + 9d83e2d commit 1b04532
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 8 deletions.
10 changes: 9 additions & 1 deletion 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/iamdefinitelyahuman/brownie)

## [1.9.3](https://github.com/iamdefinitelyahuman/brownie/tree/v1.9.3) - 2020-06-19
### Added
- Accounts can now be unlocked on development networks ([#633](https://github.com/eth-brownie/brownie/pull/633))

### Fixed
- Parity error messages ([#631](https://github.com/eth-brownie/brownie/pull/631))
- Geth error messages on reverted `eth_call` ([#639](https://github.com/eth-brownie/brownie/pull/639))
- Etherscan source code returned as compiler JSON input ([#637](https://github.com/eth-brownie/brownie/pull/637))
- Enter correct frame on exception with `brownie run -I` ([#638](https://github.com/eth-brownie/brownie/pull/638))
- Always exit with non-zero status on an unhandled exception ([#640](https://github.com/eth-brownie/brownie/pull/640))

## [1.9.2](https://github.com/iamdefinitelyahuman/brownie/tree/v1.9.12) - 2020-06-08
## [1.9.2](https://github.com/iamdefinitelyahuman/brownie/tree/v1.9.2) - 2020-06-08
### Added
- Filter report outputs by source path or contract name ([#626](https://github.com/eth-brownie/brownie/pull/626))

Expand Down
2 changes: 1 addition & 1 deletion brownie/_cli/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from brownie.utils import color, notify
from brownie.utils.docopt import docopt, levenshtein_norm

__version__ = "1.9.2"
__version__ = "1.9.3"

__doc__ = """Usage: brownie <command> [<args>...] [options <args>]
Expand Down
8 changes: 4 additions & 4 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,19 @@ eth-event>=1.1.0,<2.0.0
eth-hash[pycryptodome]==0.2.0
eth-utils==1.9.0
hexbytes==0.2.1
hypothesis==5.16.0
hypothesis==5.16.2
prompt-toolkit==3.0.5
psutil>=5.7.0,<6.0.0
py>=1.5.0
py-solc-ast>=1.2.4,<2.0.0
py-solc-x>=0.8.2,<1.0.0
py-solc-x>=0.10.0,<1.0.0
pygments==2.6.1
pytest==5.4.3
pytest-xdist==1.32.0
pythx==1.5.7
pythx==1.6.1
pyyaml>=5.3.0,<6.0.0
requests>=2.23.0,<3.0.0
semantic-version==2.8.5
tqdm==4.46.1
vyper==0.1.0b17
web3==5.11.0
web3==5.11.1
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.9.2
current_version = 1.9.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.9.2", # don't change this manually, use bumpversion instead
version="1.9.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 1b04532

Please sign in to comment.