Skip to content

Commit b074060

Browse files
zhmiaoCopilot
andcommitted
chore(release): bump 0.1.13 -> 0.1.14 for OQ-cleanup release
Bumps all workspace Cargo.toml + pyproject.toml + installer defaults to v0.1.14 so the F-R2-4 CI version-consistency preflight passes on next tag-push. v0.1.14 ships the 6 OQ closures from this session's wrap-up: - OQ-2026-05-28-1: server-boot-smoke CI job (regression test for B-09) - OQ-2026-05-28-2: README --dest custom-path example - OQ-2026-05-28-3: RESOLVED (already addressed in install.sh:529) - OQ-2026-05-28-4: brew README 'all 6' -> 'all 8 SONAMEs' wording - OQ-2026-05-28-5: ORT_VERSION hoisted to canonical docker/.ort-version file - OQ-2026-05-28-6: PQ-01..10 manual_test_plan polish (sparrow-engine-dev side) Brew formulas intentionally NOT bumped: brew updates require SHA256 of v0.1.14 tarballs, which only exist after release. Separate post-release op. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent eb18db2 commit b074060

11 files changed

Lines changed: 17 additions & 17 deletions

File tree

installer/sparrow-engine-install.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ param(
4545

4646
# ----- Constants ---------------------------------------------------------
4747

48-
$Script:SparrowEngineVersion = if ($Version) { $Version } elseif ($env:SPARROW_ENGINE_VERSION) { $env:SPARROW_ENGINE_VERSION } else { '0.1.13' }
48+
$Script:SparrowEngineVersion = if ($Version) { $Version } elseif ($env:SPARROW_ENGINE_VERSION) { $env:SPARROW_ENGINE_VERSION } else { '0.1.14' }
4949
$Script:InstallRoot = Join-Path $env:LOCALAPPDATA 'Programs\sparrow-engine' # %LocalAppData%\Programs\sparrow-engine
5050
$Script:UserSparrowEngineDir = Join-Path $env:USERPROFILE '.sparrow-engine' # state file + RC sentinel home
5151
$Script:StateFile = Join-Path $Script:UserSparrowEngineDir 'installed.json'

installer/sparrow-engine-install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ set -euo pipefail
2424
# Phase F release-CI step on every published GH Release (`vX.Y.Z`). The
2525
# `SPARROW_ENGINE_VERSION` env var overrides this for advanced users
2626
# wanting to install an older or newer release.
27-
SPARROW_ENGINE_VERSION="${SPARROW_ENGINE_VERSION:-0.1.13}"
27+
SPARROW_ENGINE_VERSION="${SPARROW_ENGINE_VERSION:-0.1.14}"
2828
SPARROW_ENGINE_PREFIX="${SPARROW_ENGINE_PREFIX:-$HOME/.sparrow-engine}"
2929
SPARROW_ENGINE_STATE_FILE="$SPARROW_ENGINE_PREFIX/installed.json"
3030
# Default release base = public GH Releases asset URL. Phase E B-02 fix

sparrow-engine/Cargo.lock

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sparrow-engine/sparrow-engine-cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sparrow-engine-cli"
3-
version = "0.1.13"
3+
version = "0.1.14"
44
edition = "2021"
55
description = "CLI for sparrow-engine wildlife inference engine"
66

sparrow-engine/sparrow-engine-core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sparrow-engine-core"
3-
version = "0.1.13"
3+
version = "0.1.14"
44
edition = "2021"
55
description = "Phase 3.8 — sparrow-engine workspace device-agnostic core. Zero ORT/CUDA/nvjpeg deps."
66

sparrow-engine/sparrow-engine-cpu/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sparrow-engine-cpu"
3-
version = "0.1.13"
3+
version = "0.1.14"
44
edition = "2021"
55
description = "Phase 3.8 — sparrow-engine CPU pipeline."
66

sparrow-engine/sparrow-engine-gpu/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sparrow-engine-gpu"
3-
version = "0.1.13"
3+
version = "0.1.14"
44
edition = "2021"
55
description = "Phase 3.8 — sparrow-engine GPU pipeline: image (nvjpeg + CUDA preprocess + ORT CUDA-EP) and audio (cuFFT + cuBLAS mel + ORT CUDA-EP IoBinding)."
66

sparrow-engine/sparrow-engine-python/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sparrow-engine-python"
3-
version = "0.1.13"
3+
version = "0.1.14"
44
edition = "2021"
55
description = "PyO3 bindings for sparrow-engine (CPU or GPU pipeline) — camera trap ML inference"
66

sparrow-engine/sparrow-engine-python/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ build-backend = "maturin"
2626

2727
[project]
2828
name = "sparrow-engine"
29-
version = "0.1.13"
29+
version = "0.1.14"
3030
description = "Camera-trap ML inference engine — Python API only (sparrow-engine CPU pipeline). The CLI binary (spe / spe-gpu) and HTTP server are NOT shipped via pip; install them via brew, the system installer (sparrow-engine-install.sh / .ps1), or the GitHub Release tarball. See https://github.com/microsoft/Pytorch-Wildlife/blob/sparrow-engine-dev/docs/user-manual.md"
3131
readme = "../../README.md"
3232
requires-python = ">=3.11"

sparrow-engine/sparrow-engine-server/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sparrow-engine-server"
3-
version = "0.1.13"
3+
version = "0.1.14"
44
edition = "2021"
55
description = "Thin HTTP wrapper around sparrow-engine-cpu or sparrow-engine-gpu (Phase C feature-gated) for Docker deployment"
66

0 commit comments

Comments
 (0)