diff --git a/CHANGELOG.md b/CHANGELOG.md index 7435b0c6..a3c343eb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,9 @@ 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] +## [0.1.5] - 2024-04-22 +- Improve error message when attempting to use [alluka.inject][] without DI. + ## [0.1.4] - 2023-12-27 ### Added - Python 3.12 support. @@ -70,7 +73,8 @@ part of Tanjun. - The public `CallackDescriptor` and `TypeDescriptor` classes as callbacks are now processed within the client and any necessary caching is kept internal. -[Unreleased]: https://github.com/FasterSpeeding/Alluka/compare/v0.1.4...HEAD +[Unreleased]: https://github.com/FasterSpeeding/Alluka/compare/v0.1.5...HEAD +[0.1.5]: https://github.com/FasterSpeeding/Alluka/compare/v0.1.4...v0.1.5 [0.1.4]: https://github.com/FasterSpeeding/Alluka/compare/v0.1.3...v0.1.4 [0.1.3]: https://github.com/FasterSpeeding/Alluka/compare/v0.1.2...v0.1.3 [0.1.2]: https://github.com/FasterSpeeding/Alluka/compare/v0.1.1...v0.1.2 diff --git a/pyproject.toml b/pyproject.toml index e3cfde79..b8591427 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "flit_core.buildapi" [project] name = "alluka" -version = "0.1.4" +version = "0.1.5" readme = "README.md" requires-python = ">=3.9.0,<3.13" license = {file = "LICENSE"}