From 1e1819846b12af6341f8fe748a3ef92d7d92932a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 5 Dec 2024 03:23:59 +0000 Subject: [PATCH] chore: release develop --- .release-please-manifest.json | 2 +- CHANGELOG.md | 7 +++++++ gitops/__init__.py | 2 +- pyproject.toml | 2 +- 4 files changed, 10 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 3d64dc5..697b25f 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,5 +1,5 @@ { - ".": "0.13.0", + ".": "0.13.1", "gitops_server": "0.14.0", "charts/gitops": "0.13.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 873701d..7f55dc8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.13.1](https://github.com/uptick/gitops/compare/cli-v0.13.0...cli-v0.13.1) (2024-12-05) + + +### Bug Fixes + +* fix gitops bump for cross account ([d3394e3](https://github.com/uptick/gitops/commit/d3394e3214d104c323fb397d885c118a36075b5b)) + ## [0.13.0](https://github.com/uptick/gitops/compare/cli-v0.12.1...cli-v0.13.0) (2024-11-15) diff --git a/gitops/__init__.py b/gitops/__init__.py index e084c11..45096a3 100644 --- a/gitops/__init__.py +++ b/gitops/__init__.py @@ -6,7 +6,7 @@ from .utils.cli import success, warning -__version__ = "0.13.0" +__version__ = "0.13.1" # Checking gitops version matches cluster repo version. diff --git a/pyproject.toml b/pyproject.toml index 272a09c..0d0ef6b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [project] name = "gitops" -version = "0.13.0" +version = "0.13.1" description = "Manage multiple apps across one or more k8s clusters." requires-python = ">=3.12" readme = "README.md"