From 2d8d85285142512787663e45dbc8a55af14e7770 Mon Sep 17 00:00:00 2001 From: Daniel Date: Mon, 13 Oct 2025 19:35:45 +0000 Subject: [PATCH] feat: bump version 1.28.0 -> 1.29.0 --- pyproject.toml | 4 ++-- src/thecodecrate_pipeline/__init__.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 04500dc..2bee212 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "thecodecrate-pipeline" -version = "1.28.0" +version = "1.29.0" description = "This package provides a pipeline pattern implementation" readme = "README.md" authors = [{ name = "TheCodeCrate", email = "loureiro.rg@gmail.com" }] @@ -48,7 +48,7 @@ build-backend = "hatchling.build" line-length = 79 [tool.bumpver] -current_version = "1.28.0" +current_version = "1.29.0" version_pattern = "MAJOR.MINOR.PATCH" commit_message = "feat: bump version {old_version} -> {new_version}" tag_message = "{new_version}" diff --git a/src/thecodecrate_pipeline/__init__.py b/src/thecodecrate_pipeline/__init__.py index ee5cc93..7c89017 100644 --- a/src/thecodecrate_pipeline/__init__.py +++ b/src/thecodecrate_pipeline/__init__.py @@ -3,7 +3,7 @@ # This will be updated by `bumpver` command. # - Make sure to commit all changes first before running `bumpver`. # - Run `bumpver update --[minor|major|patch]` -__version__ = "1.28.0" +__version__ = "1.29.0" # Re-exporting symbols from _lib.contracts.pipeline import Pipeline as PipelineInterface