From 11c29b3a647b2ae7caa13d429069c8055ec6bc7a Mon Sep 17 00:00:00 2001 From: Ben Hauser Date: Sun, 29 Nov 2020 01:15:53 +0400 Subject: [PATCH] release: update changelog, bump version to v1.12.1 --- CHANGELOG.md | 4 ++++ brownie/_config.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e6a1f3f0a..3c44e5729 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased](https://github.com/eth-brownie/brownie) +## [1.12.1](https://github.com/eth-brownie/brownie/tree/v1.12.1) - 2020-11-28 +### Fixed +- Append zero-bytes when expected size of memory exceeds actual size ([#868](https://github.com/eth-brownie/brownie/pull/868)) + ## [1.12.0](https://github.com/eth-brownie/brownie/tree/v1.12.0) - 2020-11-24 ### Added - `TransactionReceipt.replace` for rebroadcasting pending transactions ([#846](https://github.com/eth-brownie/brownie/pull/846)) diff --git a/brownie/_config.py b/brownie/_config.py index 8792ea9ca..5cbc61400 100644 --- a/brownie/_config.py +++ b/brownie/_config.py @@ -17,7 +17,7 @@ from brownie._singleton import _Singleton -__version__ = "1.12.0" +__version__ = "1.12.1" BROWNIE_FOLDER = Path(__file__).parent DATA_FOLDER = Path.home().joinpath(".brownie") diff --git a/setup.cfg b/setup.cfg index 71a6fd986..2c331b64e 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.12.0 +current_version = 1.12.1 [bumpversion:file:setup.py] diff --git a/setup.py b/setup.py index df62619a4..a5d534340 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ setup( name="eth-brownie", packages=find_packages(), - version="1.12.0", # don't change this manually, use bumpversion instead + version="1.12.1", # 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,