diff --git a/.release-please-manifest.json b/.release-please-manifest.json index aa6e53d..0f02e36 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,5 +1,5 @@ { - ".": "1.1.0", + ".": "1.1.1", "gitops_server": "0.15.1", - "charts/gitops": "1.1.0" + "charts/gitops": "1.1.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 5d5ade9..3315ef5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [1.1.1](https://github.com/uptick/gitops/compare/gitops-v1.1.0...gitops-v1.1.1) (2025-01-24) + + +### Bug Fixes + +* releases should be dot formatted ([d1469e8](https://github.com/uptick/gitops/commit/d1469e8cdbded06dbd5194e9ca7f0b2f52d7ff3e)) + ## [1.0.1](https://github.com/uptick/gitops/compare/cli-v1.0.0...cli-v1.0.1) (2025-01-23) diff --git a/charts/gitops/CHANGELOG.md b/charts/gitops/CHANGELOG.md index bcbc57b..f1ed021 100644 --- a/charts/gitops/CHANGELOG.md +++ b/charts/gitops/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [1.1.1](https://github.com/uptick/gitops/compare/helm-v1.1.0...helm-v1.1.1) (2025-01-24) + + +### Bug Fixes + +* Release-As: 1.1.1 ([1543396](https://github.com/uptick/gitops/commit/1543396593d14ead283e8d1f7a60eca9f36d3e57)) + ## [1.1.0](https://github.com/uptick/gitops/compare/helm-v0.13.3...helm-v1.1.0) (2025-01-23) diff --git a/charts/gitops/Chart.yaml b/charts/gitops/Chart.yaml index 8cb2a93..556c358 100644 --- a/charts/gitops/Chart.yaml +++ b/charts/gitops/Chart.yaml @@ -2,4 +2,4 @@ apiVersion: v1 appVersion: "1.0" description: GitOps Server Helm chart. name: gitops -version: 1.1.0 +version: 1.1.1 diff --git a/gitops/__init__.py b/gitops/__init__.py index a113648..2555211 100644 --- a/gitops/__init__.py +++ b/gitops/__init__.py @@ -6,7 +6,7 @@ from .utils.cli import success, warning -__version__ = "1.1.0" +__version__ = "1.1.1" # Checking gitops version matches cluster repo version. diff --git a/gitops_server/version.py b/gitops_server/version.py index 6849410..a82b376 100644 --- a/gitops_server/version.py +++ b/gitops_server/version.py @@ -1 +1 @@ -__version__ = "1.1.0" +__version__ = "1.1.1" diff --git a/pyproject.toml b/pyproject.toml index a6c9ac6..f0c66d6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [project] name = "gitops" -version = "1.1.0" +version = "1.1.1" description = "Manage multiple apps across one or more k8s clusters." requires-python = ">=3.12" readme = "README.md"