From 524a04209f04bf4d4a5b17beffeb20e0df08e960 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 10 Jul 2026 14:23:36 +0000 Subject: [PATCH] chore: release 0.9.4 Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- .release-please-manifest.json | 2 +- CHANGELOG.md | 23 +++++++++++++++++++++++ Makefile | 2 +- charts/foreman/Chart.yaml | 4 ++-- charts/llmkube/Chart.yaml | 4 ++-- pkg/cli/version.go | 2 +- 6 files changed, 30 insertions(+), 7 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index ee2bfff4..1b1f6a80 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.9.3" + ".": "0.9.4" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 6d6b129d..225e43d8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,29 @@ 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.9.4](https://github.com/defilantech/LLMKube/compare/v0.9.3...v0.9.4) (2026-07-10) + + +### Features + +* **chart:** support multiple agent fleets in one release ([#1028](https://github.com/defilantech/LLMKube/issues/1028)) ([a9a6c6b](https://github.com/defilantech/LLMKube/commit/a9a6c6bf2e40efddb16df80ac0ba4bdc7f7a71bb)) +* **cli:** --revise-from-branch on foreman dispatch for in-place PR refresh ([#1043](https://github.com/defilantech/LLMKube/issues/1043)) ([26f807b](https://github.com/defilantech/LLMKube/commit/26f807bfe28652ae628ab9e5eca1a9ba33781ede)) +* **cli:** llmkube foreman slice renders a sliced Workload from a plan ([#1049](https://github.com/defilantech/LLMKube/issues/1049)) ([ce586ed](https://github.com/defilantech/LLMKube/commit/ce586ed73b5b51a6509273c0b08adf183db195a3)) +* **cli:** plan an issue into slices in llmkube foreman slice ([#1050](https://github.com/defilantech/LLMKube/issues/1050)) ([c4a967c](https://github.com/defilantech/LLMKube/commit/c4a967c89735836980ea04e4666d69c9f2ca89c7)) +* **foreman:** integrate + reconcile AgenticTask kinds + slice payload ([#1037](https://github.com/defilantech/LLMKube/issues/1037)) ([0899e9f](https://github.com/defilantech/LLMKube/commit/0899e9f9651747df5837d46b229bca6de80b9cc3)) +* **foreman:** integrate library for disjoint slice union ([#1036](https://github.com/defilantech/LLMKube/issues/1036)) ([39131f6](https://github.com/defilantech/LLMKube/commit/39131f6d707b9190385175c89fa8d4f718a9726e)) +* **foreman:** reconcile library for sliced-workload interface drift ([#1034](https://github.com/defilantech/LLMKube/issues/1034)) ([b14f687](https://github.com/defilantech/LLMKube/commit/b14f687b07c6afb88c9902f9a7812627cf8a4346)) +* **foreman:** run_integrate tool for sliced-workload union ([#1045](https://github.com/defilantech/LLMKube/issues/1045)) ([5098b4e](https://github.com/defilantech/LLMKube/commit/5098b4ec86f11414f3e4de0df9040d0f0dd2853e)) +* **foreman:** run_reconcile tool for sliced-workload drift check ([#1046](https://github.com/defilantech/LLMKube/issues/1046)) ([6bde143](https://github.com/defilantech/LLMKube/commit/6bde14346aee1acd53753688e9f8b016a5048874)) +* **foreman:** ship default integrate/reconcile Agents for sliced workloads ([#1052](https://github.com/defilantech/LLMKube/issues/1052)) ([00dd7c0](https://github.com/defilantech/LLMKube/commit/00dd7c003a393698a467b2a19d0ea3f646b02684)) + + +### Bug Fixes + +* **foreman:** add payload.branchStrategy to stop stale revisions reverting merged work ([#1042](https://github.com/defilantech/LLMKube/issues/1042)) ([9f806d4](https://github.com/defilantech/LLMKube/commit/9f806d476befe91d10afda0d682115720d6abc55)) +* **foreman:** anchor recovery soft-reset at merge-base branch point ([#1044](https://github.com/defilantech/LLMKube/issues/1044)) ([2492d15](https://github.com/defilantech/LLMKube/commit/2492d15b1b7f8245f043bf22dbd62c52f3b5ad53)) +* **release:** publish a cross-platform Homebrew formula, not a macOS-only cask ([#1041](https://github.com/defilantech/LLMKube/issues/1041)) ([32dcfea](https://github.com/defilantech/LLMKube/commit/32dcfea7d90c73d1cf333bafe61a1bac0abd6fcf)) + ## [0.9.3](https://github.com/defilantech/LLMKube/compare/v0.9.2...v0.9.3) (2026-07-09) diff --git a/Makefile b/Makefile index 778f310c..0a413057 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.9.3 # x-release-please-version +IMG ?= ghcr.io/defilantech/llmkube-controller:0.9.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/foreman/Chart.yaml b/charts/foreman/Chart.yaml index d60ce6cf..3c0dc9df 100644 --- a/charts/foreman/Chart.yaml +++ b/charts/foreman/Chart.yaml @@ -10,8 +10,8 @@ description: | coupling is that the foreman-operator's RBAC reads inference.llmkube.dev CRDs that llmkube installs. type: application -version: 0.9.3 -appVersion: 0.9.3 +version: 0.9.4 +appVersion: 0.9.4 keywords: - llmkube - foreman diff --git a/charts/llmkube/Chart.yaml b/charts/llmkube/Chart.yaml index 3d17ffb2..5564ed70 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.9.3 -appVersion: 0.9.3 +version: 0.9.4 +appVersion: 0.9.4 keywords: - llm - kubernetes diff --git a/pkg/cli/version.go b/pkg/cli/version.go index f5d5a126..82956dfc 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.9.3" // x-release-please-version + Version = "0.9.4" // x-release-please-version // GitCommit is set during build GitCommit = "unknown" // BuildDate is set during build