Skip to content

Commit

Permalink
bumpversion
Browse files Browse the repository at this point in the history
  • Loading branch information
iamdefinitelyahuman committed Nov 4, 2019
1 parent fda924a commit 14ca901
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion brownie/_cli/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
from brownie.exceptions import ProjectNotFound
from brownie.utils import color, notify

__version__ = "1.0.1"
__version__ = "1.1.0"

__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 @@ -33,7 +33,7 @@ def setup(sphinx):
# The short X.Y version
version = ""
# The full version, including alpha/beta/rc tags
release = "v1.0.1"
release = "v1.1.0"


# -- General configuration ---------------------------------------------------
Expand Down
3 changes: 2 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.0.1
current_version = 1.1.0

[bumpversion:file:setup.py]

Expand Down Expand Up @@ -31,3 +31,4 @@ follow_imports = silent

[tool:pytest]
addopts = -p no:pytest-brownie --cov=brownie/

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.0.1", # don't change this manually, use bumpversion instead
version="1.1.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 14ca901

Please sign in to comment.