diff --git a/CHANGELOG.md b/CHANGELOG.md index d25bde64a..25e61fe7c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,8 +5,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] +## [2.17.5] - 2024-05-11 ### Fixed - Now compatible with Alluka `v0.3.0`. + Fixed the conflict between internal attributes inherited from Alluka's + `BaseContext` class and internal attributes being explicitly declared by + Tanjun's context classes. ## [2.17.4] - 2024-04-29 ### Changed @@ -19,6 +23,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed - Now compatible with Alluka `v0.2.0`. + Tanjun no-longer tries to use Alluka's removed `UNDEFINED` singleton and its + relevant types. ### Removed - `tanjun.injecting.UndefinedOr`, `tanjun.injecting.UNDEFINED`, @@ -1017,7 +1023,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Support for python 3.8 in-order to switch over to using collection.abc generic classes due to this being more forward compatible. -[Unreleased]: https://github.com/FasterSpeeding/Tanjun/compare/v2.17.4...HEAD +[Unreleased]: https://github.com/FasterSpeeding/Tanjun/compare/v2.17.5...HEAD +[2.17.5]: https://github.com/FasterSpeeding/Tanjun/compare/v2.17.4...v2.17.5 [2.17.4]: https://github.com/FasterSpeeding/Tanjun/compare/v2.17.3...v2.17.4 [2.17.3]: https://github.com/FasterSpeeding/Tanjun/compare/v2.17.2...v2.17.3 [2.17.2]: https://github.com/FasterSpeeding/Tanjun/compare/v2.17.1...v2.17.2 diff --git a/pyproject.toml b/pyproject.toml index 2c965339f..cf3446cdf 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "flit_core.buildapi" [project] name = "hikari-tanjun" -version = "2.17.4" +version = "2.17.5" readme = "README.md" requires-python = ">=3.9.0,<3.13" license = {file = "LICENSE"}