diff --git a/.github/wiki/Home.md b/.github/wiki/Home.md index 73537616..b88dedae 100644 --- a/.github/wiki/Home.md +++ b/.github/wiki/Home.md @@ -1,6 +1,6 @@ # nself Admin Documentation -Version 1.3.6 · MIT License · Docker-ready +Version 1.4.0 · MIT License · Docker-ready **The web UI for the nself CLI. Manage your self-hosted backend stack from a browser.** @@ -92,7 +92,7 @@ Version 1.3.6 · MIT License · Docker-ready ## Current Version -**v1.3.6** - See [CHANGELOG](CHANGELOG) for details. +**v1.4.0** - See [CHANGELOG](CHANGELOG) for details. ## License diff --git a/Dockerfile b/Dockerfile index a9d47ac0..0c0a3ccf 100644 --- a/Dockerfile +++ b/Dockerfile @@ -120,7 +120,7 @@ COPY --from=mkcert-builder /out/mkcert /usr/local/bin/mkcert RUN chmod +x /usr/local/bin/mkcert # Install nself CLI pre-built binary -ARG NSELF_VERSION=1.3.6 +ARG NSELF_VERSION=1.4.0 RUN ARCH=$(uname -m) && \ if [ "$ARCH" = "x86_64" ]; then NSELF_ARCH="amd64"; \ elif [ "$ARCH" = "aarch64" ]; then NSELF_ARCH="arm64"; \ @@ -154,7 +154,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.6 +ENV ADMIN_VERSION=1.4.0 # Environment variables that can be set at runtime: # NSELF_PROJECT_PATH - Path to mounted project (default: /workspace) @@ -164,7 +164,7 @@ ENV ADMIN_VERSION=1.3.6 # 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.6" +LABEL org.opencontainers.image.version="1.4.0" 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 898595e1..57f30ef7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "nself-admin", - "version": "1.3.6", + "version": "1.4.0", "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 f1774609..eb3ca1b9 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.6' +export const CLI_VERSION = '1.4.0'