diff --git a/CHANGELOG.md b/CHANGELOG.md index 77f9f5ece..0b7799173 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,8 +6,11 @@ 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.20.7](https://github.com/eth-brownie/brownie/tree/v1.20.7) - 2025-01-06 ### Added -- `py.typed` marker +- Support for vyper `0.4.0` ([#1793](https://github.com/eth-brownie/brownie/pull/1793)) +- `py.typed` marker ([#1794](https://github.com/eth-brownie/brownie/pull/1794)) ## [1.20.6](https://github.com/eth-brownie/brownie/tree/v1.20.6) - 2024-06-22 ### Added diff --git a/brownie/_config.py b/brownie/_config.py index 2b3ebe6a9..2e378fccb 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.20.6" +__version__ = "1.20.7" BROWNIE_FOLDER = Path(__file__).parent DATA_FOLDER = Path.home().joinpath(".brownie") diff --git a/setup.cfg b/setup.cfg index 149409482..28560d976 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.20.6 +current_version = 1.20.7 [bumpversion:file:setup.py] diff --git a/setup.py b/setup.py index e79b26cbf..99ef113a1 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ setup( name="eth-brownie", packages=find_packages(), - version="1.20.6", # don't change this manually, use bumpversion instead + version="1.20.7", # 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,