diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 9eeb5a3..f71a3ce 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,5 +1,5 @@ { - ".": "1.6.1", + ".": "1.6.2", "gitops_server": "0.15.1", "charts/gitops": "1.2.2" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 5f7e908..4dac39b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## [1.6.2](https://github.com/uptick/gitops/compare/gitops-v1.6.1...gitops-v1.6.2) (2026-06-23) + + +### Bug Fixes + +* **deploy:** isolate per-app failures so one bad app doesn't abort the batch ([29ff9c3](https://github.com/uptick/gitops/commit/29ff9c378ab8d003fc862f274b39bc131ada5871)) +* **deploy:** isolate per-app failures so one bad app doesn't abort the batch ([8261b7b](https://github.com/uptick/gitops/commit/8261b7bb335678a029586b2238e81cb783988009)) +* **deploy:** make post_result fail-proof so reporting errors don't abort the batch ([83dbc8e](https://github.com/uptick/gitops/commit/83dbc8e217e358ea51168eb955007ac76bceb9aa)) + ## [1.6.1](https://github.com/uptick/gitops/compare/gitops-v1.6.0...gitops-v1.6.1) (2026-05-28) diff --git a/gitops/__init__.py b/gitops/__init__.py index a2959d9..d409973 100644 --- a/gitops/__init__.py +++ b/gitops/__init__.py @@ -6,7 +6,7 @@ from .utils.cli import success, warning -__version__ = "1.6.1" +__version__ = "1.6.2" # Checking gitops version matches cluster repo version. diff --git a/gitops_server/version.py b/gitops_server/version.py index f49459c..51bbb3f 100644 --- a/gitops_server/version.py +++ b/gitops_server/version.py @@ -1 +1 @@ -__version__ = "1.6.1" +__version__ = "1.6.2" diff --git a/pyproject.toml b/pyproject.toml index 572f1f3..d738e7a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [project] name = "gitops" -version = "1.6.1" +version = "1.6.2" description = "Manage multiple apps across one or more k8s clusters." requires-python = ">=3.12" readme = "README.md" diff --git a/uv.lock b/uv.lock index 9e99d9d..123f32f 100644 --- a/uv.lock +++ b/uv.lock @@ -295,7 +295,7 @@ wheels = [ [[package]] name = "gitops" -version = "1.6.1" +version = "1.6.2" source = { editable = "." } dependencies = [ { name = "boto3" },