diff --git a/CHANGELOG.md b/CHANGELOG.md index 473f0c114..39d10bcfd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,21 +6,29 @@ This changelog format is based on [Keep a Changelog](https://keepachangelog.com/ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased](https://github.com/eth-brownie/brownie) + +## [1.18.2](https://github.com/eth-brownie/brownie/tree/v1.18.2) - 2022-05-15 ### Added -- Allow to subscribe to events, with callbacks, using the corresponding contract instance. -- Allow to retrieve events that have occurred between two blocks using the corresponding contract instance. -- Allow listening for an event using the associated contract instance. +- Subscribe to events, with callbacks, using the corresponding contract instance ([#1453](https://github.com/eth-brownie/brownie/pull/1453)) +- Retrieve events that have occurred between two blocks using the corresponding contract instance ([#1453](https://github.com/eth-brownie/brownie/pull/1453)) +- Listening for an event using the associated contract instance ([#1453](https://github.com/eth-brownie/brownie/pull/1453)) - Allow cache disabling when forking with ganache ([#1473](https://github.com/eth-brownie/brownie/pull/1473)) +- Detect 0xsplits clone proxies ([#1524](https://github.com/eth-brownie/brownie/pull/1524)) ### Fixed - Fix download of dependencies with special characters in tag/version ([#1470](https://github.com/eth-brownie/brownie/pull/1470)) - Deepcopy config so that disconnecting and reconnecting to networks works fully ([#1466](https://github.com/eth-brownie/brownie/pull/1466)) -- hardhat integration on windows ([#1482](https://github.com/eth-brownie/brownie/pull/1482)) +- Hardhat integration on Windows ([#1482](https://github.com/eth-brownie/brownie/pull/1482)) +- Handle equal sign in network RPC address ([#1450](https://github.com/eth-brownie/brownie/pull/1450)) +- `ReturnValue` comparison on tuples containing strings ([#1476](https://github.com/eth-brownie/brownie/pull/1476)) +- Ensure `.env` file exists on installed packages ([#1504](https://github.com/eth-brownie/brownie/pull/1504)) +- Bug when highlighting source code in GUI ([#1512](https://github.com/eth-brownie/brownie/pull/1512)) +- Bug when highlighting opcodes in GUI ([#1513](https://github.com/eth-brownie/brownie/pull/1513)) ## [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)) -- Ensure `.env` file exists for installed packages ([#1504](https://github.com/eth-brownie/brownie/pull/1504)) +- Ensure `.env` file exists for installed packages ([#1504](https://github.com/eth-brownie/brownie/pull/1504)) ## [1.18.0](https://github.com/eth-brownie/brownie/tree/v1.18.0) - 2022-02-14 ### Added diff --git a/brownie/_config.py b/brownie/_config.py index 392f2b0df..289cc3b1d 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.1" +__version__ = "1.18.2" BROWNIE_FOLDER = Path(__file__).parent DATA_FOLDER = Path.home().joinpath(".brownie") diff --git a/setup.cfg b/setup.cfg index 3fb48040f..d4d26603f 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.18.1 +current_version = 1.18.2 [bumpversion:file:setup.py] diff --git a/setup.py b/setup.py index 726999d89..106ce8cfc 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ setup( name="eth-brownie", packages=find_packages(), - version="1.18.1", # don't change this manually, use bumpversion instead + version="1.18.2", # 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,