From 5e0acc5fd62f55fda4a3a699bbe1821a3baaf4e2 Mon Sep 17 00:00:00 2001 From: Aaron Zuspan <50475791+aazuspan@users.noreply.github.com> Date: Fri, 10 Jan 2025 09:02:05 -0800 Subject: [PATCH] Bump 0.0.4 -> 0.1.0 (#50) * Bump 0.0.4 -> 0.1.0 * Update release date --- CHANGELOG.md | 7 ++++++- eerepr/__init__.py | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ae10262..8d417c0 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.0] - 2025-01-10 + ### Breaking Changes - `eerepr` no longer initializes on import, and **must be manually initialized** to work. @@ -88,7 +92,8 @@ All notable changes to this project will be documented in this file. 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.0.4...HEAD +[unreleased]: https://github.com/aazuspan/eerepr/compare/v0.1.0...HEAD +[0.1.0]: https://github.com/aazuspan/eerepr/compare/v0.0.4...v0.1.0 [0.0.4]: https://github.com/aazuspan/eerepr/compare/v0.0.3...v0.0.4 [0.0.3]: https://github.com/aazuspan/eerepr/compare/v0.0.2...v0.0.3 [0.0.2]: https://github.com/aazuspan/eerepr/compare/v0.0.1...v0.0.2 diff --git a/eerepr/__init__.py b/eerepr/__init__.py index 7191101..8d7ec40 100644 --- a/eerepr/__init__.py +++ b/eerepr/__init__.py @@ -1,4 +1,4 @@ from eerepr.repr import initialize, options, reset -__version__ = "0.0.4" +__version__ = "0.1.0" __all__ = ["initialize", "reset", "options"]