From 9af93db9979c63f65d7cb69a0f95614dfe0fc9cf Mon Sep 17 00:00:00 2001 From: iamdefinitelyahuman Date: Tue, 11 Feb 2020 16:38:06 +0400 Subject: [PATCH] changelog, bumpversion --- CHANGELOG.md | 12 ++++++++++-- brownie/_cli/__main__.py | 2 +- docs/conf.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 5 files changed, 14 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1fcfa9c18..9094ac2e5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,8 +6,16 @@ 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.6.4](https://github.com/iamdefinitelyahuman/brownie/tree/v1.6.4) - 2020-02-11 +### Added +- Show progress spinner when running stateful tests + +### Changed +- Update `brownie analyze` based on updates to [MythX](https://www.mythx.io/) API + ### Fixed -- allow import of project `ContractContainer` instances from `brownie` when running tests +- Allow import of project `ContractContainer` instances from `brownie` when running tests ## [1.6.3](https://github.com/iamdefinitelyahuman/brownie/tree/v1.6.3) - 2020-02-09 ### Added @@ -15,7 +23,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - [EIP-170](https://github.com/ethereum/EIPs/issues/170) size limits: warn on compile, give useful error message on failed deployment ### Changed -- unexpanded transaction trace is available for deployment transactions +- Unexpanded transaction trace is available for deployment transactions ### Fixed - Warn instead of raising when an import spec cannot be found diff --git a/brownie/_cli/__main__.py b/brownie/_cli/__main__.py index 9694ac4b9..42fd6c10a 100644 --- a/brownie/_cli/__main__.py +++ b/brownie/_cli/__main__.py @@ -10,7 +10,7 @@ from brownie.utils import color, notify from brownie.utils.docopt import docopt, levenshtein_norm -__version__ = "1.6.3" +__version__ = "1.6.4" __doc__ = """Usage: brownie [...] [options ] diff --git a/docs/conf.py b/docs/conf.py index bcd35d3d7..9331f70d9 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -37,7 +37,7 @@ def setup(sphinx): # The short X.Y version version = "" # The full version, including alpha/beta/rc tags -release = "v1.6.3" +release = "v1.6.4" # -- General configuration --------------------------------------------------- diff --git a/setup.cfg b/setup.cfg index 8e875b42d..086930e7b 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.6.3 +current_version = 1.6.4 [bumpversion:file:setup.py] diff --git a/setup.py b/setup.py index 32d44abd0..b77a1d78a 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ setup( name="eth-brownie", packages=find_packages(), - version="1.6.3", # don't change this manually, use bumpversion instead + version="1.6.4", # 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,