Skip to content

Commit bcc47bd

Browse files
changelog, bump version
1 parent 3f05552 commit bcc47bd

File tree

5 files changed

+6
-4
lines changed

5 files changed

+6
-4
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ This changelog format is based on [Keep a Changelog](https://keepachangelog.com/
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

88
## [Unreleased](https://github.com/iamdefinitelyahuman/brownie)
9+
10+
## [1.3.2](https://github.com/iamdefinitelyahuman/brownie/tree/v1.3.2) - 2020-01-01
911
### Added
1012
- error message for modulus by zero
1113
- progress bar when installing new version of solc

brownie/_cli/__main__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
from brownie.exceptions import ProjectNotFound
1212
from brownie.utils import color, notify
1313

14-
__version__ = "1.3.1"
14+
__version__ = "1.3.2"
1515

1616
__doc__ = """Usage: brownie <command> [<args>...] [options <args>]
1717

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def setup(sphinx):
3737
# The short X.Y version
3838
version = ""
3939
# The full version, including alpha/beta/rc tags
40-
release = "v1.3.1"
40+
release = "v1.3.2"
4141

4242

4343
# -- General configuration ---------------------------------------------------

setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 1.3.1
2+
current_version = 1.3.2
33

44
[bumpversion:file:setup.py]
55

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
setup(
1212
name="eth-brownie",
1313
packages=find_packages(),
14-
version="1.3.1", # don't change this manually, use bumpversion instead
14+
version="1.3.2", # don't change this manually, use bumpversion instead
1515
license="MIT",
1616
description="A Python framework for Ethereum smart contract deployment, testing and interaction.", # noqa: E501
1717
long_description=long_description,

0 commit comments

Comments
 (0)