From 2c4c814487c2fe4bf8fca91a758b646b2aae7b5b Mon Sep 17 00:00:00 2001 From: Daniel Date: Sun, 12 Oct 2025 18:27:40 +0000 Subject: [PATCH 1/2] fix: set correct path for building pip package --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index a11437a..efc82ee 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -50,7 +50,7 @@ line-length = 79 [tool.bumpver] current_version = "1.26.0" version_pattern = "MAJOR.MINOR.PATCH" -commit_message = "🚀 feat: bump version {old_version} -> {new_version}" +commit_message = "feat: bump version {old_version} -> {new_version}" tag_message = "{new_version}" tag_scope = "default" pre_commit_hook = "" @@ -67,4 +67,4 @@ push = false "thecodecrate_pipeline" = ["py.typed"] [tool.hatch.build.targets.wheel] -packages = ["src/thecodecrate_pipeline", "src/_api"] +packages = ["src/thecodecrate_pipeline", "src/_lib"] From 5556246879347702a80306400cd1b5a5814c1815 Mon Sep 17 00:00:00 2001 From: Daniel Date: Sun, 12 Oct 2025 18:28:22 +0000 Subject: [PATCH 2/2] feat: bump version 1.26.0 -> 1.27.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 efc82ee..ddf71c1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "thecodecrate-pipeline" -version = "1.26.0" +version = "1.27.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.26.0" +current_version = "1.27.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 a083f6b..e8f6cfa 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.26.0" +__version__ = "1.27.0" # Re-exporting symbols from _lib import Pipeline as Pipeline