diff --git a/CHANGELOG.md b/CHANGELOG.md index 41a0dcc..2ebbd37 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,8 @@ All notable changes to this project will be documented in this file. ## [Unreleased] +## [0.1.2] - 2025-05-02 + ### Changed - `eerepr.reset()` now clears the cache immediately instead of waiting for `eerepr.initialize()`. @@ -120,7 +122,8 @@ This release is a backport of a security fix from `0.1.0`. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -[unreleased]: https://github.com/aazuspan/eerepr/compare/v0.1.1...HEAD +[unreleased]: https://github.com/aazuspan/eerepr/compare/v0.1.2...HEAD +[0.1.2]: https://github.com/aazuspan/eerepr/compare/v0.1.1...v0.1.2 [0.1.1]: https://github.com/aazuspan/eerepr/compare/v0.1.0...v0.1.1 [0.1.0]: https://github.com/aazuspan/eerepr/compare/v0.0.4...v0.1.0 [0.0.5]: https://github.com/aazuspan/eerepr/compare/v0.0.4...v0.0.5 diff --git a/eerepr/__init__.py b/eerepr/__init__.py index 909042e..efaacfd 100644 --- a/eerepr/__init__.py +++ b/eerepr/__init__.py @@ -1,4 +1,4 @@ from eerepr.repr import initialize, options, reset -__version__ = "0.1.1" +__version__ = "0.1.2" __all__ = ["initialize", "reset", "options"]