diff --git a/CHANGELOG b/CHANGELOG index f4ca9584c..3d403025a 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,6 +1,7 @@ 1.0.0b4 ------- + - Add broadcast_reverting_tx flag - Use py-solc-x 0.4.0 - Detect and attach to an already active RPC client, better verbosity on RPC exceptions - introduce Singleton metaclass and refactor code to take advantage diff --git a/brownie/cli/__main__.py b/brownie/cli/__main__.py index 78c286d82..af0e55784 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.0b3" # did you change this in docs/conf.py as well? +__version__ = "1.0.0b4" # 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 4ba846eed..eaa483f72 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 = 'v1.0.0b3' +release = 'v1.0.0b4' # -- General configuration --------------------------------------------------- diff --git a/setup.py b/setup.py index c4e3f28d6..6c44526f7 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ setup( name = 'eth-brownie', packages=find_packages(), - version = '1.0.0b3', + version = '1.0.0b4', license = 'MIT', description = 'A python framework for Ethereum smart contract deployment, testing and interaction.', long_description = long_description, @@ -19,7 +19,6 @@ author = 'Benjamin Hauser', author_email = 'ben.hauser@hyperlink.technology', url = 'https://github.com/HyperLink-Technology/brownie', - download_url = 'https://github.com/HyperLink-Technology/brownie/archive/v1.0.0b3.tar.gz', keywords = ['brownie'], install_requires = requirements, entry_points = {"console_scripts": ["brownie=brownie.cli.__main__:main"]},