From 201b42820bd61b432745049837ddc4ce803d92bf Mon Sep 17 00:00:00 2001 From: Aric Camarata Date: Sat, 12 Sep 2026 10:19:28 -0400 Subject: [PATCH] chore: bump CLI lockstep version to 1.3.6 Keeps admin's CLI_VERSION references (package.json, cli-version.ts, Dockerfile ARG/ENV/LABEL) in step with the cli v1.3.6 patch release so cli's release.yml admin-lockstep preflight and the repo-wide Version Lockstep check both pass. --- Dockerfile | 6 +++--- package.json | 2 +- src/lib/cli-version.ts | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index dbf0f18d..b1570bd7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -98,7 +98,7 @@ RUN ARCH=$(uname -m) && \ chmod +x /usr/local/bin/mkcert # Install nself CLI pre-built binary -ARG NSELF_VERSION=1.3.5 +ARG NSELF_VERSION=1.3.6 RUN ARCH=$(uname -m) && \ if [ "$ARCH" = "x86_64" ]; then NSELF_ARCH="amd64"; \ elif [ "$ARCH" = "aarch64" ]; then NSELF_ARCH="arm64"; \ @@ -132,7 +132,7 @@ ENV NEXT_TELEMETRY_DISABLED=1 ENV HOSTNAME="0.0.0.0" # Port 3021 is the reserved port for nself-admin (not 3100, which is for Loki) ENV PORT=3021 -ENV ADMIN_VERSION=1.3.5 +ENV ADMIN_VERSION=1.3.6 # Environment variables that can be set at runtime: # NSELF_PROJECT_PATH - Path to mounted project (default: /workspace) @@ -142,7 +142,7 @@ ENV ADMIN_VERSION=1.3.5 # Add labels for container metadata LABEL org.opencontainers.image.title="nself-admin" LABEL org.opencontainers.image.description="Web-based administration interface for nself CLI" -LABEL org.opencontainers.image.version="1.3.5" +LABEL org.opencontainers.image.version="1.3.6" LABEL org.opencontainers.image.vendor="nself.org" LABEL org.opencontainers.image.source="https://github.com/nself-org/admin" LABEL org.opencontainers.image.licenses="Proprietary - Free for personal use, Commercial license required" diff --git a/package.json b/package.json index 8f96e77c..898595e1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "nself-admin", - "version": "1.3.5", + "version": "1.3.6", "private": false, "description": "Web-based administration interface for nself CLI backend stack", "license": "MIT", diff --git a/src/lib/cli-version.ts b/src/lib/cli-version.ts index cc91ce30..f1774609 100644 --- a/src/lib/cli-version.ts +++ b/src/lib/cli-version.ts @@ -11,4 +11,4 @@ * * To update: bump all three files atomically as part of the release process. */ -export const CLI_VERSION = '1.3.5' +export const CLI_VERSION = '1.3.6'