Skip to content

Commit

Permalink
changelog, bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
iamdefinitelyahuman committed May 7, 2019
1 parent 5791856 commit dc10f1b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
1 change: 1 addition & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion brownie/cli/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 <command> [<args>...] [options <args>]
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 ---------------------------------------------------
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,14 @@
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,
long_description_content_type = "text/markdown",
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"]},
Expand Down

0 comments on commit dc10f1b

Please sign in to comment.