From 58bc1ef73bda2736716e6598bdd2cc5c98520390 Mon Sep 17 00:00:00 2001 From: Danil Silantyev Date: Thu, 24 Sep 2026 23:51:16 +0500 Subject: [PATCH] feat: a release of this repository Published at 0.0.74. Propose changes through this repository's issues and pull requests. --- CHANGELOG.md | 9 +++++++++ Cargo.lock | 8 ++++---- Cargo.toml | 8 ++++---- README.md | 2 +- install.ps1 | 2 +- install.sh | 2 +- 6 files changed, 20 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2916e48..e57468d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,15 @@ cut and that this clone does not carry. ## [Unreleased] +## [0.0.74] - 2026-09-24 + +Antigravity non-minimal setups now carry allowNonWorkspaceAccess alongside +its historical setting key. A fresh Antigravity CLI 1.2.10 session on Linux +read the new key as enabled; the old key alone read disabled. The native builder +runtime settings are derived from full-auto so regeneration preserves the fix. +The provider protocol, software artifact pins and other harness postures are +unchanged. Prior releases remain available for rollback. + ## [0.0.73] - 2026-09-19 nddev-builder guidance is refreshed against each harness's current native diff --git a/Cargo.lock b/Cargo.lock index 35d837c..2a04564 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -25,7 +25,7 @@ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801" [[package]] name = "codex-setup-system" -version = "0.0.73" +version = "0.0.74" dependencies = [ "harness-runtime", "provider-v3", @@ -76,7 +76,7 @@ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" [[package]] name = "harness-runtime" -version = "0.0.73" +version = "0.0.74" dependencies = [ "provider-v3", "serde", @@ -147,7 +147,7 @@ dependencies = [ [[package]] name = "provider-v3" -version = "0.0.73" +version = "0.0.74" dependencies = [ "serde", "serde_json", @@ -209,7 +209,7 @@ dependencies = [ [[package]] name = "setup-core" -version = "0.0.73" +version = "0.0.74" dependencies = [ "miniz_oxide", "serde", diff --git a/Cargo.toml b/Cargo.toml index 9fa5891..cbd4f4a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,7 @@ members = [ ] [workspace.package] -version = "0.0.73" +version = "0.0.74" edition = "2024" rust-version = "1.89" license = "AGPL-3.0-or-later" @@ -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.73" } -provider-v3 = { path = "crates/provider-v3", version = "0.0.73" } -harness-runtime = { path = "crates/harness-runtime", version = "0.0.73" } +setup-core = { path = "crates/setup-core", version = "0.0.74" } +provider-v3 = { path = "crates/provider-v3", version = "0.0.74" } +harness-runtime = { path = "crates/harness-runtime", version = "0.0.74" } [workspace.lints.rust] unsafe_code = "forbid" diff --git a/README.md b/README.md index e49df13..f2f6d77 100644 --- a/README.md +++ b/README.md @@ -179,7 +179,7 @@ release is a convenience, not the authorised copy. ```bash docker run --rm -v "$HOME/.config:/config" \ - ghcr.io/nddev-opennetwork/codex-setup-system:0.0.73 \ + ghcr.io/nddev-opennetwork/codex-setup-system:0.0.74 \ status --target /config/ --json ``` diff --git a/install.ps1 b/install.ps1 index 1bb44d3..dc54574 100644 --- a/install.ps1 +++ b/install.ps1 @@ -7,7 +7,7 @@ # powershell -ExecutionPolicy Bypass -File install.ps1 -Version 0.1.0 [CmdletBinding()] param( - [string]$Version = "0.0.73", + [string]$Version = "0.0.74", [string]$InstallDir = "$env:LOCALAPPDATA\Programs\codex-setup-system" ) $ErrorActionPreference = "Stop" diff --git a/install.sh b/install.sh index 3ccd8f5..c43d412 100644 --- a/install.sh +++ b/install.sh @@ -14,7 +14,7 @@ set -eu REPO="NDDev-OpenNetwork/codex-setup-system" BINARY="codex-setup-system" -VERSION="${1:-0.0.73}" +VERSION="${1:-0.0.74}" PREFIX="${CODEX_INSTALL_DIR:-$HOME/.local/bin}" case "$(uname -s)" in