diff --git a/CHANGELOG.md b/CHANGELOG.md index 77f782d..c7af49b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. ## [Unreleased] +Nothing yet! + +## [0.1.1] - 2025-02-19 + ### Fixed - Fixed an error generating reprs when the default system encoding is `gbk` @@ -109,7 +113,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.0...HEAD +[unreleased]: https://github.com/aazuspan/eerepr/compare/v0.1.1...HEAD +[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 [0.0.4]: https://github.com/aazuspan/eerepr/compare/v0.0.3...v0.0.4 diff --git a/eerepr/__init__.py b/eerepr/__init__.py index 8d7ec40..909042e 100644 --- a/eerepr/__init__.py +++ b/eerepr/__init__.py @@ -1,4 +1,4 @@ from eerepr.repr import initialize, options, reset -__version__ = "0.1.0" +__version__ = "0.1.1" __all__ = ["initialize", "reset", "options"]