Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion eerepr/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from eerepr.repr import initialize, options, reset

__version__ = "0.1.0"
__version__ = "0.1.1"
__all__ = ["initialize", "reset", "options"]