diff --git a/CHANGELOG.md b/CHANGELOG.md index ffcea7f7b..2b112f0fa 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.18.1](https://github.com/eth-brownie/brownie/tree/v1.18.1) - 2022-02-15 +### Fixed +- Correctly modify chain time when using `chain.mine` with Ganache v7 ([#1438](https://github.com/eth-brownie/brownie/pull/1438)) + ## [1.18.0](https://github.com/eth-brownie/brownie/tree/v1.18.0) - 2022-02-14 ### Added - Support for Ganache v7 ([#1409](https://github.com/eth-brownie/brownie/pull/1409), [#1410](https://github.com/eth-brownie/brownie/pull/1410)) diff --git a/brownie/_config.py b/brownie/_config.py index 5457de7de..05596d2a6 100644 --- a/brownie/_config.py +++ b/brownie/_config.py @@ -19,7 +19,7 @@ from brownie._expansion import expand_posix_vars from brownie._singleton import _Singleton -__version__ = "1.18.0" +__version__ = "1.18.1" BROWNIE_FOLDER = Path(__file__).parent DATA_FOLDER = Path.home().joinpath(".brownie") diff --git a/setup.cfg b/setup.cfg index a386c6f09..3fb48040f 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.18.0 +current_version = 1.18.1 [bumpversion:file:setup.py] diff --git a/setup.py b/setup.py index 8eb03ce28..726999d89 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ setup( name="eth-brownie", packages=find_packages(), - version="1.18.0", # don't change this manually, use bumpversion instead + version="1.18.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,