From 02f5d1aca3789d23aedb47c65d20da4657ec6358 Mon Sep 17 00:00:00 2001 From: Shinsuke Sugaya Date: Sun, 23 Aug 2026 21:33:49 +0900 Subject: [PATCH] chore: release 0.3.0 Finalize the version for the 0.3.0 release and refresh the Docker tag examples so they point at the tag this release publishes. - pyproject.toml / uv.lock: 0.3.0.dev0 -> 0.3.0. publish.yml validates that the pushed v* tag matches this value, so it has to be final on main before v0.3.0 is tagged. - README.md: ghcr.io/codelibs/fessctl:0.2.0 -> 0.3.0 - skills/fessctl/references/installation.md, troubleshooting.md: ghcr.io/codelibs/fessctl:0.1.0 -> 0.3.0 --- README.md | 6 +++--- pyproject.toml | 2 +- skills/fessctl/references/installation.md | 2 +- skills/fessctl/references/troubleshooting.md | 2 +- uv.lock | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index a32bf78..53ba0f5 100644 --- a/README.md +++ b/README.md @@ -55,7 +55,7 @@ docker run --rm \ -e FESS_ENDPOINT=https://your-fess-server \ -e FESS_ACCESS_TOKEN=your_access_token_here \ -e FESS_VERSION=15.8.0 \ - ghcr.io/codelibs/fessctl:0.2.0 --help + ghcr.io/codelibs/fessctl:0.3.0 --help ``` Run actual commands: @@ -65,13 +65,13 @@ docker run --rm \ -e FESS_ENDPOINT=https://your-fess-server \ -e FESS_ACCESS_TOKEN=your_access_token_here \ -e FESS_VERSION=15.8.0 \ - ghcr.io/codelibs/fessctl:0.2.0 ping + ghcr.io/codelibs/fessctl:0.3.0 ping docker run --rm \ -e FESS_ENDPOINT=https://your-fess-server \ -e FESS_ACCESS_TOKEN=your_access_token_here \ -e FESS_VERSION=15.8.0 \ - ghcr.io/codelibs/fessctl:0.2.0 user list + ghcr.io/codelibs/fessctl:0.3.0 user list ``` ### Method 3: Building Your Own Docker Image diff --git a/pyproject.toml b/pyproject.toml index 142bbc5..21de80e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "fessctl" -version = "0.3.0.dev0" +version = "0.3.0" description = "CLI tool to manage Fess using the admin API" readme = "README.md" license = "Apache-2.0" diff --git a/skills/fessctl/references/installation.md b/skills/fessctl/references/installation.md index 62e9acd..da0e8d2 100644 --- a/skills/fessctl/references/installation.md +++ b/skills/fessctl/references/installation.md @@ -53,7 +53,7 @@ docker run --rm \ -e FESS_ACCESS_TOKEN="$FESS_ACCESS_TOKEN" \ -e FESS_VERSION="$FESS_VERSION" \ --add-host=host.docker.internal:host-gateway \ - ghcr.io/codelibs/fessctl:0.1.0 \ + ghcr.io/codelibs/fessctl:0.3.0 \ ping ``` diff --git a/skills/fessctl/references/troubleshooting.md b/skills/fessctl/references/troubleshooting.md index 2af33ed..b45911d 100644 --- a/skills/fessctl/references/troubleshooting.md +++ b/skills/fessctl/references/troubleshooting.md @@ -139,7 +139,7 @@ Recovery: ```bash docker login ghcr.io # if behind auth -docker pull ghcr.io/codelibs/fessctl:0.1.0 # pin a specific tag, not `latest` +docker pull ghcr.io/codelibs/fessctl:0.3.0 # pin a specific tag, not `latest` ``` If `latest` is unavailable in your environment, prefer a pinned version tag matching `FESS_VERSION`. diff --git a/uv.lock b/uv.lock index bd78d6f..154b63d 100644 --- a/uv.lock +++ b/uv.lock @@ -102,7 +102,7 @@ wheels = [ [[package]] name = "fessctl" -version = "0.3.0.dev0" +version = "0.3.0" source = { editable = "." } dependencies = [ { name = "httpx" },