diff --git a/CHANGELOG.md b/CHANGELOG.md index 1699207..4bbf9c0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased](https://github.com/iamdefinitelyahuman/eth-event) +## [1.2.4](https://github.com/iamdefinitelyahuman/eth-event/releases/tag/v1.2.4) - 2024-01-31 +### Fixed +- Bump dependencies +- Updates to handle downstream breaking changes + ## [1.2.3](https://github.com/iamdefinitelyahuman/eth-event/releases/tag/v1.2.3) - 2021-04-16 ### Fixed - Do not require `anonymous` field in ABI diff --git a/setup.cfg b/setup.cfg index b6e3fbe..938af5a 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.2.3 +current_version = 1.2.4 [bumpversion:file:setup.py] diff --git a/setup.py b/setup.py index f04f827..c268f5a 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ setup( name="eth-event", - version="1.2.3", # do not edit directly, use bumpversion + version="1.2.4", # do not edit directly, use bumpversion license="MIT", description="Ethereum event decoder and topic generator", long_description=long_description, @@ -34,8 +34,5 @@ "Topic :: Software Development :: Build Tools", "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.6", - "Programming Language :: Python :: 3.7", - "Programming Language :: Python :: 3.8", ], )