Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -61,3 +61,6 @@ cover/
# UV / Ruff
.uv_cache/
.ruff_cache/

# mkdocs site
/site
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -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" }]
Expand All @@ -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 = [
Expand Down Expand Up @@ -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}"
Expand Down
2 changes: 1 addition & 1 deletion src/thecodecrate_pipeline/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down