Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down Expand Up @@ -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.

Expand Down