Skip to content

Commit

Permalink
chore: changelog, bump deps, bump version to v1.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
iamdefinitelyahuman committed Apr 30, 2020
1 parent ddb61a9 commit bc65f98
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 13 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

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

## [1.8.0](https://github.com/iamdefinitelyahuman/brownie/tree/v1.8.0) - 2020-04-30
### Added
- Interactive debugging mode when running tests ([#456](https://github.com/iamdefinitelyahuman/brownie/pull/456))
- `Rpc.undo` and `Rpc.redo` ([#457](https://github.com/iamdefinitelyahuman/brownie/pull/457))
- `InterfaceContainer` and `InterfaceConstructor` ([#463](https://github.com/iamdefinitelyahuman/brownie/pull/463))
- Allow contract deployment via `Account.transfer` ([#464](https://github.com/iamdefinitelyahuman/brownie/pull/464))

### Changed
- Do not raise on non-zero block height ([#461](https://github.com/iamdefinitelyahuman/brownie/pull/461))
- When fetching source code, call `getabi` if `getsourcecode` fails ([#462](https://github.com/iamdefinitelyahuman/brownie/pull/462))

### Fixed
- Add missing args to pytest `print` method ([#460](https://github.com/iamdefinitelyahuman/brownie/pull/460))

## [1.7.5](https://github.com/iamdefinitelyahuman/brownie/tree/v1.7.5) - 2020-04-26
### Fixed
- Importing keystore files from CLI without `.json` suffix ([#448](https://github.com/iamdefinitelyahuman/brownie/pull/448))
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.7.5"
__version__ = "1.8.0"

__doc__ = """Usage: brownie <command> [<args>...] [options <args>]
Expand Down
6 changes: 3 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ eth-event>=1.0.0,<2.0.0
eth-hash[pycryptodome]==0.2.0
eth-utils==1.8.4
hexbytes==0.2.0
hypothesis==5.10.1
hypothesis==5.10.4
prompt-toolkit==3.0.5
psutil>=5.7.0,<6.0.0
py>=1.5.0
Expand All @@ -13,10 +13,10 @@ py-solc-x>=0.8.1,<1.0.0
pygments==2.6.1
pytest==5.4.1
pytest-xdist==1.31.0
pythx==1.5.6
pythx==1.5.7
pyyaml>=5.3.0,<6.0.0
requests>=2.23.0,<3.0.0
semantic-version>=2.8.4,<3.0.0
semantic-version==2.8.5
tqdm==4.45.0
vyper==0.1.0b17
web3==5.5.1
16 changes: 8 additions & 8 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.7.5
current_version = 1.8.0

[bumpversion:file:setup.py]

Expand All @@ -25,11 +25,11 @@ ignore_missing_imports = True
follow_imports = silent

[tool:pytest]
addopts =
-p no:pytest-brownie
--cov brownie/
--cov-report term
--cov-report xml
--ignore tests/data/
-n auto
addopts =
-p no:pytest-brownie
--cov brownie/
--cov-report term
--cov-report xml
--ignore tests/data/
-n auto

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.7.5", # don't change this manually, use bumpversion instead
version="1.8.0", # 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 bc65f98

Please sign in to comment.