Skip to content

Commit

Permalink
release: update changelog, bump version to v1.20.7
Browse files Browse the repository at this point in the history
  • Loading branch information
iamdefinitelyahuman committed Jan 6, 2025
1 parent 36890c7 commit 2e83abb
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion brownie/_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.20.6
current_version = 1.20.7

[bumpversion:file:setup.py]

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 2e83abb

Please sign in to comment.