Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
".": "1.0.1",
".": "1.1.0",
"gitops_server": "0.15.1",
"charts/gitops": "0.13.3"
"charts/gitops": "1.1.0"
}
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,27 @@
# Changelog

## [1.1.0](https://github.com/uptick/gitops/compare/cli-v1.0.1...cli-v1.1.0) (2025-01-23)


### Features

* bump to 1.1 please ([4ed8ed3](https://github.com/uptick/gitops/commit/4ed8ed38ae94103c559caed9054e8dcc2ddd7868))
* maybe we can just modify the release-please-manifest ([e374d14](https://github.com/uptick/gitops/commit/e374d14982f073fb4f776295a6975ef0714d501e))


### Bug Fixes

* bumping gitops_server ([b6a1d19](https://github.com/uptick/gitops/commit/b6a1d194a5900db0eacb1650c799ead24e5be981))
* fix broken gitops server release process by merging with regular gitops cli release ([739ead0](https://github.com/uptick/gitops/commit/739ead04ac77d5d2798d4d243aee2d90cffeb645))
* trigger build ([7afa38f](https://github.com/uptick/gitops/commit/7afa38f2cda0260cee0d28224c20d02baa3461a1))
* trigger gitops build ([0345a3b](https://github.com/uptick/gitops/commit/0345a3be7db914ca6e6499c4b7aa737c13fd112c))


### Miscellaneous Chores

* trigger release for [gitops_server] ([8ec041a](https://github.com/uptick/gitops/commit/8ec041a8f7d20916e84bce04d6e9669ec07829e7))
* trigger release for [gitops_server] ([1389531](https://github.com/uptick/gitops/commit/13895316fb92b837e08c6b591cc420ec46a79ca3))

## [1.0.1](https://github.com/uptick/gitops/compare/cli-v1.0.1...cli-v1.0.1) (2025-01-23)


Expand Down
7 changes: 7 additions & 0 deletions charts/gitops/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [1.1.0](https://github.com/uptick/gitops/compare/helm-v0.13.3...helm-v1.1.0) (2025-01-23)


### Miscellaneous Chores

* release 1.1.0 ([3873d12](https://github.com/uptick/gitops/commit/3873d12a3f1297151cf124cb66a7ca1f47496065))

## [0.13.3](https://github.com/uptick/gitops/compare/helm-v0.13.2...helm-v0.13.3) (2024-12-06)


Expand Down
2 changes: 1 addition & 1 deletion charts/gitops/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ apiVersion: v1
appVersion: "1.0"
description: GitOps Server Helm chart.
name: gitops
version: 0.13.3
version: 1.1.0
2 changes: 1 addition & 1 deletion gitops/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

from .utils.cli import success, warning

__version__ = "1.0.1"
__version__ = "1.1.0"


# Checking gitops version matches cluster repo version.
Expand Down
2 changes: 1 addition & 1 deletion gitops_server/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.15.1"
__version__ = "1.1.0"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

[project]
name = "gitops"
version = "1.0.1"
version = "1.1.0"
description = "Manage multiple apps across one or more k8s clusters."
requires-python = ">=3.12"
readme = "README.md"
Expand Down
Loading