diff --git a/CHANGELOG.md b/CHANGELOG.md index b71826d..e1794bf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,11 @@ 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.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.1.3] - 2024-12-14 + +### Fixed +- Fixed incorrect package name in setup.py + ## [0.1.2] - 2024-12-14 ### Fixed @@ -39,6 +44,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Restructured project to use src/ directory layout - Updated package metadata and documentation +[0.1.3]: https://github.com/mikewcasale/repominify/compare/v0.1.2...v0.1.3 [0.1.2]: https://github.com/mikewcasale/repominify/compare/v0.1.1...v0.1.2 [0.1.1]: https://github.com/mikewcasale/repominify/compare/v0.1.0...v0.1.1 [0.1.0]: https://github.com/mikewcasale/repominify/releases/tag/v0.1.0 \ No newline at end of file diff --git a/release_notes.md b/release_notes.md index d5bb9c3..0facb76 100644 --- a/release_notes.md +++ b/release_notes.md @@ -1,16 +1,14 @@ -# repominify v0.1.1 +# repominify v0.1.3 -Bug fix release to correct package import structure and CLI functionality. +Bug fix release to correct package name. ## Fixed -- Package import structure to work with current src/ layout -- CLI entry point path -- Package discovery configuration +- Fixed incorrect package name in setup.py ## Installation ```bash -pip install repominify==0.1.1 +pip install repominify==0.1.3 ``` For full details, see the [CHANGELOG](https://github.com/mikewcasale/repominify/blob/main/CHANGELOG.md). \ No newline at end of file diff --git a/setup.py b/setup.py index 893245b..c204961 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ setup( name="src", - version="0.1.2", + version="0.1.3", author="Mike Casale", author_email="mike@casale.xyz", description="A Python package that optimizes codebase representations for LLMs by generating compact, context-rich summaries",