From b67841b6179694d80794ccd7c72237d1fcda2470 Mon Sep 17 00:00:00 2001 From: Xuepoo Date: Tue, 1 Sep 2026 23:20:15 +0800 Subject: [PATCH] chore: fix crates token and bump to 0.1.3 --- .github/workflows/release.yml | 4 ++-- Cargo.toml | 4 ++-- crates/capglyph-server/Cargo.toml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1666c3f..c5d8fde 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -449,7 +449,7 @@ jobs: - name: Verify and publish capglyph-server if: steps.core-registry.outputs.ready == 'true' env: - CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }} + CARGO_REGISTRY_TOKEN: ${{ secrets.CRATES_TOKEN }} shell: bash run: | set -euo pipefail @@ -465,7 +465,7 @@ jobs: - name: Verify and publish capglyph if: steps.core-registry.outputs.ready == 'true' env: - CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }} + CARGO_REGISTRY_TOKEN: ${{ secrets.CRATES_TOKEN }} shell: bash run: | set -euo pipefail diff --git a/Cargo.toml b/Cargo.toml index 257009e..192fc70 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "capglyph" -version = "0.1.2" +version = "0.1.3" edition = "2021" description = "Invisible structural watermark for images — human-invisible, machine-detectable" license = "Apache-2.0" @@ -84,7 +84,7 @@ time = { version = "0.3", features = ["formatting"], optional = true } clap = { version = "4.5", features = ["derive"] } glob = "0.3" tracing-subscriber = { version = "0.3", features = ["env-filter"] } -capglyph-server = { path = "crates/capglyph-server", version = "0.1.2" } +capglyph-server = { path = "crates/capglyph-server", version = "0.1.3" } rand = "0.8" uuid = { version = "1.8", features = ["v4", "serde"] } diff --git a/crates/capglyph-server/Cargo.toml b/crates/capglyph-server/Cargo.toml index 124acfa..091bf16 100644 --- a/crates/capglyph-server/Cargo.toml +++ b/crates/capglyph-server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "capglyph-server" -version = "0.1.2" +version = "0.1.3" edition = "2021" description = "CapGlyph credential server (sigild) — DB + atomic consume + revocation/audit" license = "Apache-2.0"