From 8118bf632c7babd802e61dc87c1e841752f796c0 Mon Sep 17 00:00:00 2001 From: iamdefinitelyahuman Date: Fri, 26 Apr 2019 17:56:33 +0400 Subject: [PATCH] update changelog, bump version to 1.0.0b3 --- CHANGELOG | 12 ++++++++++++ brownie/cli/__main__.py | 2 +- docs/conf.py | 2 +- 3 files changed, 14 insertions(+), 2 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 40b22e77f..71c8604f4 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,15 @@ +1.0.0b3 +------- + + - major code re-organization and refactoring + - allow skipping contracts with _ + - modify test coverage file format + - merge test and coverage components of cli + - only run tests / coverage evaluation if related files have changed + - integrate opview as brownie gui + - many bugfixes and minor changes + + 1.0.0b2 ------- diff --git a/brownie/cli/__main__.py b/brownie/cli/__main__.py index 2525f4805..78c286d82 100644 --- a/brownie/cli/__main__.py +++ b/brownie/cli/__main__.py @@ -9,7 +9,7 @@ from brownie.cli.utils import color import brownie.project as project -__version__ = "1.0.0b2" # did you change this in docs/conf.py as well? +__version__ = "1.0.0b3" # did you change this in docs/conf.py as well? __doc__ = """Usage: brownie [...] [options ] diff --git a/docs/conf.py b/docs/conf.py index ee176a62b..fd57c8477 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -26,7 +26,7 @@ # The short X.Y version version = '' # The full version, including alpha/beta/rc tags -release = '1.0.0b2' +release = '1.0.0b3' # -- General configuration ---------------------------------------------------