diff --git a/CHANGELOG.md b/CHANGELOG.md index 87eaa3f..dae44fd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.2] - 2024-10-21 + ### Added - Multiple renderers @@ -24,6 +26,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Plotting basic functionality with CLI -[Unreleased]: https://github.com/RaczeQ/pixel-map/compare/0.1.1...HEAD +[Unreleased]: https://github.com/RaczeQ/pixel-map/compare/0.1.2...HEAD + +[0.1.2]: https://github.com/RaczeQ/pixel-map/compare/0.1.1...0.1.2 [0.1.1]: https://github.com/RaczeQ/pixel-map/releases/tag/0.1.1 diff --git a/pixel_map/__init__.py b/pixel_map/__init__.py index 421dc92..1f762e7 100644 --- a/pixel_map/__init__.py +++ b/pixel_map/__init__.py @@ -1,4 +1,4 @@ """Pixel-map library.""" __app_name__ = "pixel-map" -__version__ = "0.1.1" +__version__ = "0.1.2" diff --git a/pyproject.toml b/pyproject.toml index 6642889..107963f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "pixel-map" -version = "0.1.1" +version = "0.1.2" description = "A Python CLI tool for plotting geo files in the terminal" authors = [{ name = "Kamil Raczycki", email = "kraczycki@kraina.ai" }] dependencies = [ @@ -108,7 +108,7 @@ close-quotes-on-newline = true wrap-one-line = true [tool.bumpver] -current_version = "0.1.1" +current_version = "0.1.2" version_pattern = "MAJOR.MINOR.PATCH[PYTAGNUM]" commit_message = "chore(CI/CD): bump version {old_version} -> {new_version}" commit = true