From 6811aa6b02f66d282fa2c608d3275ee264f2b1f0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 16 Mar 2026 20:17:25 +0000 Subject: [PATCH] chore: release 0.5.2 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 7 +++++++ Makefile | 2 +- charts/llmkube/Chart.yaml | 4 ++-- pkg/cli/version.go | 2 +- 5 files changed, 12 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 210d290..258342d 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.5.1" + ".": "0.5.2" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 0739e2a..d120fbe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,13 @@ All notable changes to LLMKube will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.5.2](https://github.com/defilantech/LLMKube/compare/v0.5.1...v0.5.2) (2026-03-16) + + +### Documentation + +* add Discord community link ([#236](https://github.com/defilantech/LLMKube/issues/236)) ([c0d499d](https://github.com/defilantech/LLMKube/commit/c0d499d0bf5cbac220851ec5da81a04d466d2bdc)) + ## [0.5.1](https://github.com/defilantech/LLMKube/compare/v0.5.0...v0.5.1) (2026-03-16) diff --git a/Makefile b/Makefile index 0ad541a..686cdb1 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ # Image URL to use all building/pushing image targets -IMG ?= ghcr.io/defilantech/llmkube-controller:0.5.1 # x-release-please-version +IMG ?= ghcr.io/defilantech/llmkube-controller:0.5.2 # x-release-please-version # Get the currently used golang install path (in GOPATH/bin, unless GOBIN is set) ifeq (,$(shell go env GOBIN)) diff --git a/charts/llmkube/Chart.yaml b/charts/llmkube/Chart.yaml index 3506a98..f7d7c64 100644 --- a/charts/llmkube/Chart.yaml +++ b/charts/llmkube/Chart.yaml @@ -4,8 +4,8 @@ description: >- A Helm chart for LLMKube - Kubernetes operator for GPU-accelerated LLM inference type: application -version: 0.5.1 -appVersion: 0.5.1 +version: 0.5.2 +appVersion: 0.5.2 keywords: - llm - kubernetes diff --git a/pkg/cli/version.go b/pkg/cli/version.go index 5ed3006..cc99179 100644 --- a/pkg/cli/version.go +++ b/pkg/cli/version.go @@ -24,7 +24,7 @@ import ( var ( // Version is set during build via ldflags or updated by release-please - Version = "0.5.1" // x-release-please-version + Version = "0.5.2" // x-release-please-version // GitCommit is set during build GitCommit = "unknown" // BuildDate is set during build