From 3ae122952c1b73c5cfb43275b4d05b8066ed9a06 Mon Sep 17 00:00:00 2001 From: Adib Hanna Date: Thu, 24 Sep 2026 18:07:08 -0500 Subject: [PATCH] Docs(readme): the install commands point at server 2.56.0 Server 2.56.0 is published with its Docker image (2.56.0, 2.56 and latest), so the binary instructions download that release and the Docker examples pin its minor. The upgrade guide's own examples keep naming 2.51 as the tag a running install might still be on. --- README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 0d82a85..9804c42 100644 --- a/README.md +++ b/README.md @@ -65,7 +65,7 @@ docker run -d --name zennotes \ -v "$HOME/ZenNotes/auth-token:/run/secrets/zennotes_auth_token:ro" \ -e ZENNOTES_AUTH_TOKEN_FILE=/run/secrets/zennotes_auth_token \ -e ZENNOTES_PERSIST_SESSIONS=1 \ - adibhanna/zennotes:2.55 + adibhanna/zennotes:2.56 ``` Then open and paste the token from @@ -89,7 +89,7 @@ Why these flags: ```yaml services: zennotes: - image: adibhanna/zennotes:2.55 + image: adibhanna/zennotes:2.56 restart: unless-stopped user: "1000:1000" # your uid:gid, see `id -u` / `id -g` ports: @@ -123,8 +123,8 @@ inside it. Probe `GET /healthz` from the host instead. It returns | Tag | Meaning | | --- | --- | -| `2.55.0` | Exact release. Pin this in production. | -| `2.55` | Latest patch of that minor. | +| `2.56.0` | Exact release. Pin this in production. | +| `2.56` | Latest patch of that minor. | | `latest` | Latest release. | ### Build the image yourself @@ -155,7 +155,7 @@ binaries plus a `SHA256SUMS` file: **Linux** ```sh -VERSION=2.55.0 +VERSION=2.56.0 ARCH=amd64 # or arm64 BASE="https://github.com/ZenNotes/znserver/releases/download/v${VERSION}" @@ -170,7 +170,7 @@ sudo install -m 0755 "zennotes-server-linux-${ARCH}" /usr/local/bin/zennotes-ser **macOS** ```sh -VERSION=2.55.0 +VERSION=2.56.0 ARCH=arm64 # or amd64 on Intel Macs BASE="https://github.com/ZenNotes/znserver/releases/download/v${VERSION}" @@ -189,7 +189,7 @@ flag with `xattr -d com.apple.quarantine `. **Windows** (PowerShell) ```powershell -$Version = "2.55.0" +$Version = "2.56.0" $Base = "https://github.com/ZenNotes/znserver/releases/download/v$Version" Invoke-WebRequest "$Base/zennotes-server-windows-amd64.exe" -OutFile zennotes-server.exe Invoke-WebRequest "$Base/SHA256SUMS" -OutFile SHA256SUMS