From 2077c33cc327877bf49456d0d1c9ed10a2bf7c10 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 3 Apr 2026 04:49:13 +0000 Subject: [PATCH] chore: release 0.5.4 --- .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 d9d5699..8d9c233 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.5.3" + ".": "0.5.4" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 21b0258..1cb88b3 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.4](https://github.com/defilantech/LLMKube/compare/v0.5.3...v0.5.4) (2026-04-03) + + +### Features + +* add HPA autoscaling for InferenceService ([#260](https://github.com/defilantech/LLMKube/issues/260)) ([2d16502](https://github.com/defilantech/LLMKube/commit/2d165023b3595a137104acff382474ee5498c5ba)) + ## [0.5.3](https://github.com/defilantech/LLMKube/compare/v0.5.2...v0.5.3) (2026-04-01) diff --git a/Makefile b/Makefile index c9c5d4e..a10e523 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.3 # x-release-please-version +IMG ?= ghcr.io/defilantech/llmkube-controller:0.5.4 # 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 91b3c4f..f79a818 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.3 -appVersion: 0.5.3 +version: 0.5.4 +appVersion: 0.5.4 keywords: - llm - kubernetes diff --git a/pkg/cli/version.go b/pkg/cli/version.go index 6f6fbc4..0dca9ab 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.3" // x-release-please-version + Version = "0.5.4" // x-release-please-version // GitCommit is set during build GitCommit = "unknown" // BuildDate is set during build