Skip to content

Commit e134e4c

Browse files
authored
Merge pull request #45 from thecodecrate/docs/mkdocs-links
Docs/mkdocs links
2 parents 1b55d4d + 3c10e57 commit e134e4c

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,3 +61,6 @@ cover/
6161
# UV / Ruff
6262
.uv_cache/
6363
.ruff_cache/
64+
65+
# mkdocs site
66+
/site

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ This package provides a pipeline pattern implementation.
44

55
The 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

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "thecodecrate-pipeline"
3-
version = "1.25.0"
3+
version = "1.26.0"
44
description = "This package provides a pipeline pattern implementation"
55
readme = "README.md"
66
authors = [{ name = "TheCodeCrate", email = "loureiro.rg@gmail.com" }]
@@ -20,7 +20,7 @@ requires-python = ">=3.13"
2020

2121
[project.urls]
2222
repository = "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]
2626
dev = [
@@ -48,7 +48,7 @@ build-backend = "hatchling.build"
4848
line-length = 79
4949

5050
[tool.bumpver]
51-
current_version = "1.25.0"
51+
current_version = "1.26.0"
5252
version_pattern = "MAJOR.MINOR.PATCH"
5353
commit_message = "🚀 feat: bump version {old_version} -> {new_version}"
5454
tag_message = "{new_version}"

src/thecodecrate_pipeline/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
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
99
from _api.core import Pipeline as Pipeline

0 commit comments

Comments
 (0)