From 830609908693ea5a1f423c955c929b4c471d18fc Mon Sep 17 00:00:00 2001 From: Kirari Sawamura Date: Wed, 12 Aug 2026 23:03:25 +0900 Subject: [PATCH] chore: bump version to 0.2.0 --- .github/workflows/release.yml | 2 +- Cargo.lock | 2 +- Cargo.toml | 2 +- README.md | 6 +++--- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6e4d95f..5bf2194 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -6,7 +6,7 @@ on: version: description: Release version without the leading v required: true - default: "0.1.0" + default: "0.2.0" type: string push: tags: diff --git a/Cargo.lock b/Cargo.lock index 7231bfb..36830df 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -167,7 +167,7 @@ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9" [[package]] name = "codex-micro-chroma" -version = "0.1.0" +version = "0.2.0" dependencies = [ "anyhow", "base64", diff --git a/Cargo.toml b/Cargo.toml index b378da7..8af7918 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "codex-micro-chroma" -version = "0.1.0" +version = "0.2.0" edition = "2021" rust-version = "1.88" license = "MIT" diff --git a/README.md b/README.md index eaaed80..2fbc1ce 100644 --- a/README.md +++ b/README.md @@ -49,10 +49,10 @@ Exactly one HID interface matching the Codex Micro is required. No matching devi ## Download -The current release is **v0.1.0**. Download the universal macOS archive and its SHA-256 checksum from GitHub Releases: +The current release is **v0.2.0**. Download the universal macOS archive and its SHA-256 checksum from GitHub Releases: ```bash -VERSION=0.1.0 +VERSION=0.2.0 BASE_URL="https://github.com/hauntedfail/Codex-Micro-Chroma/releases/download/v${VERSION}" ARCHIVE="codex-micro-chroma-v${VERSION}-macos-universal.tar.gz" @@ -267,7 +267,7 @@ cargo test --all-targets --all-features The `Release macOS binary` GitHub Actions workflow builds an ad-hoc-signed universal binary, creates a checksum, and publishes both files in a new GitHub Release. The requested version must match the `version` in `Cargo.toml`. -To publish manually, open **Actions > Release macOS binary > Run workflow** and enter a version without the leading `v`, such as `0.1.0`. Alternatively, push a matching tag such as `v0.1.0`. +To publish manually, open **Actions > Release macOS binary > Run workflow** and enter a version without the leading `v`, such as `0.2.0`. Alternatively, push a matching tag such as `v0.2.0`. An existing release or manually supplied existing tag is never overwritten. Update `Cargo.toml` and the version shown in the Download section before publishing the next version.