From 5cc5ebcc99c1fe7d23194c1ae7a1839ce9363d7f Mon Sep 17 00:00:00 2001 From: Daniel Loureiro Date: Fri, 21 Feb 2025 20:31:19 +0000 Subject: [PATCH 1/2] =?UTF-8?q?=F0=9F=94=97=20docs:=20add=20link=20referen?= =?UTF-8?q?ces=20to=20online=20documentation?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Update README.md with links to https://thecodecrate.github.io/python-pipeline/ - Ensure all relevant sections point to the online documentation --- .gitignore | 3 +++ README.md | 2 ++ pyproject.toml | 2 +- 3 files changed, 6 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index dee580a..6b79f1c 100644 --- a/.gitignore +++ b/.gitignore @@ -61,3 +61,6 @@ cover/ # UV / Ruff .uv_cache/ .ruff_cache/ + +# mkdocs site +/site diff --git a/README.md b/README.md index 5dc6549..249eb3a 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,8 @@ This package provides a pipeline pattern implementation. The implementation is inspired by the excellent [PHP League Pipeline](https://github.com/thephpleague/pipeline) package. +Full documentation can be found at [https://thecodecrate.github.io/python-pipeline/](https://thecodecrate.github.io/python-pipeline/). + ## Installation ```bash diff --git a/pyproject.toml b/pyproject.toml index 5837fa3..d1939be 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -20,7 +20,7 @@ requires-python = ">=3.13" [project.urls] repository = "https://github.com/thecodecrate/python-pipeline" -documentation = "https://github.com/thecodecrate/python-pipeline" +documentation = "https://thecodecrate.github.io/python-pipeline/" [dependency-groups] dev = [ From 3c10e5760d507616e96c13e1f2a1236a7612c1b8 Mon Sep 17 00:00:00 2001 From: Daniel Loureiro Date: Fri, 21 Feb 2025 20:32:16 +0000 Subject: [PATCH 2/2] =?UTF-8?q?=F0=9F=9A=80=20feat:=20bump=20version=201.2?= =?UTF-8?q?5.0=20->=201.26.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 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 d1939be..7f3fa34 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "thecodecrate-pipeline" -version = "1.25.0" +version = "1.26.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.25.0" +current_version = "1.26.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 9953301..4d5339c 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.25.0" +__version__ = "1.26.0" # Re-exporting symbols from _api.core import Pipeline as Pipeline