From 23609aa07ea037c2b5b1be840a898d86d5bb830a Mon Sep 17 00:00:00 2001 From: Kamil Raczycki Date: Sat, 19 Oct 2024 00:28:30 +0200 Subject: [PATCH] chore(CI/CD): bump version 0.0.1 -> 0.1.0 (#1) * chore(CI/CD): bump version 0.0.1 -> 0.1.0 * docs: update CHANGELOG.md --------- Co-authored-by: RaczeQ <17250607+RaczeQ@users.noreply.github.com> --- CHANGELOG.md | 6 ++++++ pixel_map/__init__.py | 2 +- pyproject.toml | 4 ++-- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 605ab91..6e8d48d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.0] - 2024-10-18 + ### Added - Plotting basic functionality with CLI + +[Unreleased]: https://github.com/RaczeQ/pixel-map/compare/0.1.0...HEAD + +[0.1.0]: https://github.com/RaczeQ/pixel-map/releases/tag/0.1.0 diff --git a/pixel_map/__init__.py b/pixel_map/__init__.py index 096bdb3..642b285 100644 --- a/pixel_map/__init__.py +++ b/pixel_map/__init__.py @@ -1,2 +1,2 @@ __app_name__ = "pixel-map" -__version__ = "0.0.1" \ No newline at end of file +__version__ = "0.1.0" \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index 718c6c3..b753250 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "pixel-map" -version = "0.0.1" +version = "0.1.0" description = "A Python CLI tool for plotting geo files in the terminal" authors = [{ name = "Kamil Raczycki", email = "kraczycki@kraina.ai" }] dependencies = [ @@ -109,7 +109,7 @@ close-quotes-on-newline = true wrap-one-line = true [tool.bumpver] -current_version = "0.0.1" +current_version = "0.1.0" version_pattern = "MAJOR.MINOR.PATCH[PYTAGNUM]" commit_message = "chore(CI/CD): bump version {old_version} -> {new_version}" commit = true