Skip to content
Merged
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
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,17 @@ cut and that this clone does not carry.

## [Unreleased]

## [0.0.64] - 2026-09-04

Software pins move to the versions the vendors publish today:
Claude Code 2.1.260, Codex 0.153.2, Pi 0.85.0 and Antigravity CLI 1.1.26.
Grok Build 1.0.18, OpenCode 1.18.27 and Cursor 2026.09.02-c22c1a3 are
unchanged. Four catalogues are rebound to those bytes.

nddev-builder authoring for Claude Code names the plugin manifest fields
the vendor's current schema actually carries, and records that a
plugin-shipped agent drops hooks, MCP servers and permissionMode.

## [0.0.63] - 2026-09-04

Public trees name only their own provider. The AppContainer probe and
Expand Down
8 changes: 4 additions & 4 deletions Cargo.lock

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

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ members = [
]

[workspace.package]
version = "0.0.63"
version = "0.0.64"
edition = "2024"
rust-version = "1.89"
license = "AGPL-3.0-or-later"
Expand All @@ -23,9 +23,9 @@ sha2 = "0.11"
# `setup-core::archive`); an inflate loop is not, because its bugs are
# memory-safety bugs and it is not improved by being hand-written here.
miniz_oxide = "0.9"
setup-core = { path = "crates/setup-core", version = "0.0.63" }
provider-v3 = { path = "crates/provider-v3", version = "0.0.63" }
harness-runtime = { path = "crates/harness-runtime", version = "0.0.63" }
setup-core = { path = "crates/setup-core", version = "0.0.64" }
provider-v3 = { path = "crates/provider-v3", version = "0.0.64" }
harness-runtime = { path = "crates/harness-runtime", version = "0.0.64" }

[workspace.lints.rust]
unsafe_code = "forbid"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ release is a convenience, not the authorised copy.

```bash
docker run --rm -v "$HOME/.config:/config" \
ghcr.io/nddev-opennetwork/opencode-setup-system:0.0.63 \
ghcr.io/nddev-opennetwork/opencode-setup-system:0.0.64 \
status --target /config/<dir> --json
```

Expand Down
2 changes: 1 addition & 1 deletion install.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# powershell -ExecutionPolicy Bypass -File install.ps1 -Version 0.1.0
[CmdletBinding()]
param(
[string]$Version = "0.0.63",
[string]$Version = "0.0.64",
[string]$InstallDir = "$env:LOCALAPPDATA\Programs\opencode-setup-system"
)
$ErrorActionPreference = "Stop"
Expand Down
2 changes: 1 addition & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ set -eu

REPO="NDDev-OpenNetwork/opencode-setup-system"
BINARY="opencode-setup-system"
VERSION="${1:-0.0.63}"
VERSION="${1:-0.0.64}"
PREFIX="${OPENCODE_INSTALL_DIR:-$HOME/.local/bin}"

case "$(uname -s)" in
Expand Down
Loading