diff --git a/documentation/docs/srvc1/changelog.md b/documentation/docs/srvc1/changelog.md index 939a609..6d88848 100644 --- a/documentation/docs/srvc1/changelog.md +++ b/documentation/docs/srvc1/changelog.md @@ -4,7 +4,7 @@ This document includes all changes made to the `srvc1` module per version. -## v1.1.0 (2025-01-16) +## v1.0.1 (2025-01-16) ### Bug Fixes diff --git a/documentation/docs/srvc2/changelog.md b/documentation/docs/srvc2/changelog.md index 5f2ccb9..ca4022f 100644 --- a/documentation/docs/srvc2/changelog.md +++ b/documentation/docs/srvc2/changelog.md @@ -4,18 +4,13 @@ This document includes all changes made to the `srvc2` module per version. -## v1.2.0 (2025-01-17) +## v1.1.1 (2025-01-17) ### Bug Fixes - Fix for service 2 ([`7b30779`](https://github.com/marc-at-brightnight/psr-monorepo-poweralpha/commit/7b307799afb199445702742f98285d3ac47ec525)) - Great fix! -### Features - -- Feature release for service 1 ([`7e8b52a`](https://github.com/marc-at-brightnight/psr-monorepo-poweralpha/commit/7e8b52ae4163a14fab621f510f91e68ca031686a)) - - Great feature! - ## v1.1.0 (2025-01-16) diff --git a/poweralpha/services/srvc1/__main__.py b/poweralpha/services/srvc1/__main__.py index ac4ba54..7379e69 100644 --- a/poweralpha/services/srvc1/__main__.py +++ b/poweralpha/services/srvc1/__main__.py @@ -1,5 +1,5 @@ def main(): - print("Hello from srvc1!!") + print("Hello from srvc1!!!") if __name__ == "__main__": main() diff --git a/poweralpha/services/srvc2/__init__.py b/poweralpha/services/srvc2/__init__.py index c68196d..a82b376 100644 --- a/poweralpha/services/srvc2/__init__.py +++ b/poweralpha/services/srvc2/__init__.py @@ -1 +1 @@ -__version__ = "1.2.0" +__version__ = "1.1.1" diff --git a/poweralpha/services/srvc2/pyproject.toml b/poweralpha/services/srvc2/pyproject.toml index 1d6bff0..c934e87 100644 --- a/poweralpha/services/srvc2/pyproject.toml +++ b/poweralpha/services/srvc2/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "srvc2" -version = "1.2.0" +version = "1.1.1" [project.scripts] srvc2 = "__main__:main" diff --git a/semantic-release.yaml b/semantic-release.yaml index bd6dbe8..de63338 100644 --- a/semantic-release.yaml +++ b/semantic-release.yaml @@ -1,2 +1,2 @@ -srvc1: false +srvc1: true srvc2: false