diff --git a/CHANGELOG.md b/CHANGELOG.md index 3002dc1..cdc139e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed - (Add bug fixes here before release) +## [0.1.2] - 2025-12-01 +### Added +- Added LRU caching for handler lookups to improve dispatch performance + ## [0.1.1] - 2025-08-12 ### Changed @@ -62,6 +66,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Real-world examples for web APIs, microservices, and plugins - Development setup and contribution guidelines -[Unreleased]: https://github.com/eowl/action-dispatch/compare/v0.1.1...HEAD +[Unreleased]: https://github.com/eowl/action-dispatch/compare/v0.1.2...HEAD +[0.1.2]: https://github.com/eowl/action-dispatch/releases/tag/v0.1.2 [0.1.1]: https://github.com/eowl/action-dispatch/releases/tag/v0.1.1 [0.1.0]: https://github.com/eowl/action-dispatch/releases/tag/v0.1.0 diff --git a/action_dispatch/__init__.py b/action_dispatch/__init__.py index 6799454..4d94451 100644 --- a/action_dispatch/__init__.py +++ b/action_dispatch/__init__.py @@ -38,7 +38,7 @@ ) from .mixins import CacheMixin -__version__ = "0.1.1" +__version__ = "0.1.2" __author__ = "Eowl" __email__ = "eowl@me.com"