Skip to content
Open
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
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.5.1"
".": "0.5.2"
}
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)


Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -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))
Expand Down
4 changes: 2 additions & 2 deletions charts/llmkube/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion pkg/cli/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down