diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 5a18284..830ee30 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,5 +1,5 @@ { - ".": "1.5.1", + ".": "1.5.2", "gitops_server": "0.15.1", - "charts/gitops": "1.2.0" + "charts/gitops": "1.2.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index c3ec18d..a79fc70 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [1.5.2](https://github.com/uptick/gitops/compare/gitops-v1.5.1...gitops-v1.5.2) (2025-12-15) + + +### Bug Fixes + +* add OTEL environment variables to helm chart and addDEFAULT_LOGGING_CONFIG_DICT ([fd07319](https://github.com/uptick/gitops/commit/fd07319a2160af58647556ef7ee377f1212be71d)) + ## [1.5.1](https://github.com/uptick/gitops/compare/gitops-v1.5.0...gitops-v1.5.1) (2025-08-04) diff --git a/charts/gitops/CHANGELOG.md b/charts/gitops/CHANGELOG.md index 530a852..6a135ad 100644 --- a/charts/gitops/CHANGELOG.md +++ b/charts/gitops/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [1.2.1](https://github.com/uptick/gitops/compare/helm-v1.2.0...helm-v1.2.1) (2025-12-15) + + +### Bug Fixes + +* add OTEL environment variables to helm chart and addDEFAULT_LOGGING_CONFIG_DICT ([fd07319](https://github.com/uptick/gitops/commit/fd07319a2160af58647556ef7ee377f1212be71d)) + ## [1.2.0](https://github.com/uptick/gitops/compare/helm-v1.1.2...helm-v1.2.0) (2025-05-09) diff --git a/charts/gitops/Chart.yaml b/charts/gitops/Chart.yaml index ce7c738..fc839a4 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.2.0 +version: 1.2.1 diff --git a/gitops/__init__.py b/gitops/__init__.py index e77abe9..53f7754 100644 --- a/gitops/__init__.py +++ b/gitops/__init__.py @@ -6,7 +6,7 @@ from .utils.cli import success, warning -__version__ = "1.5.1" +__version__ = "1.5.2" # Checking gitops version matches cluster repo version. diff --git a/gitops_server/version.py b/gitops_server/version.py index 0f228f2..5197c5f 100644 --- a/gitops_server/version.py +++ b/gitops_server/version.py @@ -1 +1 @@ -__version__ = "1.5.1" +__version__ = "1.5.2" diff --git a/pyproject.toml b/pyproject.toml index d86b583..936e4ff 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [project] name = "gitops" -version = "1.5.1" +version = "1.5.2" description = "Manage multiple apps across one or more k8s clusters." requires-python = ">=3.12" readme = "README.md"