Skip to content

Commit 69101c9

Browse files
zhmiaoCopilot
andcommitted
chore(release): bump 0.1.12 -> 0.1.13 for cleanup-session-plus-8 release
Bumps all workspace Cargo.toml + pyproject.toml + installer defaults to v0.1.13 so the CI version-consistency preflight (F-R2-4) passes on next tag-push. Brew formulas intentionally NOT bumped: brew updates require SHA256 of published v0.1.13 tarballs, which only exist after the release workflow uploads them. Brew bump is a separate post-release operation. v0.1.13 ships the Phase 4.5 cleanup sweep: 13 product bugs fixed, including B-01 piped installer, B-02 release-base default, B-03 spe --version, B-06 CPU Docker dlopen, B-07 GPU Docker regression, B-08 GPU perch-v2 raw_audio, B-09 server boot deadlock (ort_resolver port), B-12 sparrow_engine_version FFI shim (CPU+GPU parity, 35 symbols). Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent 38ef6d0 commit 69101c9

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.12' }
48+
$Script:SparrowEngineVersion = if ($Version) { $Version } elseif ($env:SPARROW_ENGINE_VERSION) { $env:SPARROW_ENGINE_VERSION } else { '0.1.13' }
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.12}"
27+
SPARROW_ENGINE_VERSION="${SPARROW_ENGINE_VERSION:-0.1.13}"
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.12"
3+
version = "0.1.13"
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.12"
3+
version = "0.1.13"
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.12"
3+
version = "0.1.13"
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.12"
3+
version = "0.1.13"
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.12"
3+
version = "0.1.13"
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.12"
29+
version = "0.1.13"
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.12"
3+
version = "0.1.13"
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)