File tree Expand file tree Collapse file tree 4 files changed +9
-4
lines changed
src/thecodecrate_pipeline Expand file tree Collapse file tree 4 files changed +9
-4
lines changed Original file line number Diff line number Diff line change 6161# UV / Ruff
6262.uv_cache /
6363.ruff_cache /
64+
65+ # mkdocs site
66+ /site
Original file line number Diff line number Diff line change @@ -4,6 +4,8 @@ This package provides a pipeline pattern implementation.
44
55The implementation is inspired by the excellent [ PHP League Pipeline] ( https://github.com/thephpleague/pipeline ) package.
66
7+ Full documentation can be found at [ https://thecodecrate.github.io/python-pipeline/ ] ( https://thecodecrate.github.io/python-pipeline/ ) .
8+
79## Installation
810
911``` bash
Original file line number Diff line number Diff line change 11[project ]
22name = " thecodecrate-pipeline"
3- version = " 1.25 .0"
3+ version = " 1.26 .0"
44description = " This package provides a pipeline pattern implementation"
55readme = " README.md"
66authors = [{ name = " TheCodeCrate" , email = " loureiro.rg@gmail.com" }]
@@ -20,7 +20,7 @@ requires-python = ">=3.13"
2020
2121[project .urls ]
2222repository = " https://github.com/thecodecrate/python-pipeline"
23- documentation = " https://github.com/thecodecrate/ python-pipeline"
23+ documentation = " https://thecodecrate. github.io/ python-pipeline/ "
2424
2525[dependency-groups ]
2626dev = [
@@ -48,7 +48,7 @@ build-backend = "hatchling.build"
4848line-length = 79
4949
5050[tool .bumpver ]
51- current_version = " 1.25 .0"
51+ current_version = " 1.26 .0"
5252version_pattern = " MAJOR.MINOR.PATCH"
5353commit_message = " 🚀 feat: bump version {old_version} -> {new_version}"
5454tag_message = " {new_version}"
Original file line number Diff line number Diff line change 33# This will be updated by `bumpver` command.
44# - Make sure to commit all changes first before running `bumpver`.
55# - Run `bumpver update --[minor|major|patch]`
6- __version__ = "1.25 .0"
6+ __version__ = "1.26 .0"
77
88# Re-exporting symbols
99from _api .core import Pipeline as Pipeline
You can’t perform that action at this time.
0 commit comments