Skip to content

Commit 70ec115

Browse files
committed
Bump release packaging to v0.1.2
1 parent 3846f11 commit 70ec115

9 files changed

Lines changed: 13 additions & 13 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## Unreleased
44

5-
## v0.1.1 - 2026-03-18
5+
## v0.1.2 - 2026-03-18
66

77
Patch release that turns the first public MVP into a fully packaged public release.
88

@@ -16,7 +16,7 @@ Included in this release:
1616
- README and install docs updated with release package locations
1717
- repository About summary populated
1818

19-
Stable within `v0.1.1`:
19+
Stable within `v0.1.2`:
2020

2121
- the same Coroot adapter, topology normalization, and Bering -> Sheaft orchestration shipped in `v0.1.0`
2222
- pinned compatibility baseline for Coroot, Bering, and Sheaft

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ include versions/toolchain.env
2828
IMAGE ?= ghcr.io/mb3r-lab/coroot-graft:dev
2929
HELM_BIN ?= helm
3030
DIST_DIR ?= dist
31-
APP_VERSION ?= 0.1.1
31+
APP_VERSION ?= 0.1.2
3232
ifeq ($(OS),Windows_NT)
3333
GIT_COMMIT ?= $(strip $(shell powershell -NoProfile -Command "$$commit = git rev-parse HEAD 2>$$null; if ($$LASTEXITCODE -eq 0 -and $$commit) { $$commit } else { 'unknown' }"))
3434
BUILD_DATE ?= $(strip $(shell powershell -NoProfile -Command "(Get-Date).ToUniversalTime().ToString('yyyy-MM-ddTHH:mm:ssZ')"))

build/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM --platform=$BUILDPLATFORM golang:1.26-alpine AS graft-build
22
ARG TARGETOS=linux
33
ARG TARGETARCH=amd64
44
ARG TARGETVARIANT=""
5-
ARG VERSION=0.1.1
5+
ARG VERSION=0.1.2
66
ARG COMMIT=unknown
77
ARG BUILD_DATE=1970-01-01T00:00:00Z
88
WORKDIR /src
@@ -54,7 +54,7 @@ RUN set -eu; \
5454
go build -trimpath -ldflags="-s -w" -o /out/sheaft ./cmd/sheaft
5555

5656
FROM alpine:3.20
57-
ARG VERSION=0.1.1
57+
ARG VERSION=0.1.2
5858
ARG COMMIT=unknown
5959
ARG BUILD_DATE=1970-01-01T00:00:00Z
6060
LABEL org.opencontainers.image.title="coroot-graft" \

charts/coroot-graft/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ apiVersion: v2
22
name: coroot-graft
33
description: OCI-publishable Helm chart for the Coroot adapter that wraps upstream Bering and Sheaft.
44
type: application
5-
version: 0.1.1
6-
appVersion: 0.1.1
5+
version: 0.1.2
6+
appVersion: 0.1.2
77
kubeVersion: ">=1.27.0-0"

charts/coroot-graft/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
image:
22
repository: ghcr.io/mb3r-lab/coroot-graft
3-
tag: v0.1.1
3+
tag: v0.1.2
44
digest: ""
55
pullPolicy: IfNotPresent
66

compatibility-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"schema_version": "1.0",
33
"adapter": {
44
"name": "coroot-graft",
5-
"version": "0.1.1"
5+
"version": "0.1.2"
66
},
77
"toolchain": {
88
"bering": {

deploy/docker/coroot-compose.graft-local.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ services:
1212
BERING_REF: ${BERING_REF:-812b69982293a02b1be46ee2b2161beced2f658a}
1313
SHEAFT_REPOSITORY: ${SHEAFT_REPOSITORY:-https://github.com/MB3R-Lab/Sheaft}
1414
SHEAFT_REF: ${SHEAFT_REF:-7a37c5908a721157f9178d6173395f1cbb29d493}
15-
VERSION: ${APP_VERSION:-0.1.1}
15+
VERSION: ${APP_VERSION:-0.1.2}
1616
image: coroot-graft-local:dev
1717
restart: always
1818
command: ["serve", "-config", "/etc/coroot-graft/graft.yaml"]

docs/install.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@ Published package entrypoints:
1919
Example image pull:
2020

2121
```bash
22-
docker pull ghcr.io/mb3r-lab/coroot-graft:v0.1.1
22+
docker pull ghcr.io/mb3r-lab/coroot-graft:v0.1.2
2323
```
2424

2525
Example OCI chart install:
2626

2727
```bash
2828
helm upgrade --install coroot-graft oci://ghcr.io/mb3r-lab/charts/coroot-graft \
29-
--version 0.1.1 \
29+
--version 0.1.2 \
3030
--namespace coroot-graft \
3131
--create-namespace \
3232
--set secrets.existingSecret=coroot-graft-secrets

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module coroot-graft
22

3-
go 1.26.0
3+
go 1.26.1
44

55
require (
66
github.com/prometheus/client_golang v1.23.2

0 commit comments

Comments
 (0)