From cff0f90ddf2b6c1cefde6528605b47038ec3f3ba Mon Sep 17 00:00:00 2001 From: Luke Curley Date: Fri, 25 Sep 2026 18:28:38 -0700 Subject: [PATCH] chore: bump package versions Patch bumps for unreleased behavior since #3879. Rust stays with release-plz. Go stays at 0.7 because the wrapper additions are compatible and CI owns that patch. Co-Authored-By: Grok --- bun.lock | 20 ++++++++++---------- js/auth/package.json | 2 +- js/binary/package.json | 2 +- js/hang/package.json | 2 +- js/json/package.json | 2 +- js/moq-boy/package.json | 2 +- js/net/package.json | 2 +- js/publish/package.json | 2 +- js/room/package.json | 2 +- js/signals/package.json | 2 +- js/watch/package.json | 2 +- kt/README.md | 2 +- kt/gradle.properties | 2 +- py/moq-rs/pyproject.toml | 2 +- swift/README.md | 2 +- swift/VERSION | 2 +- uv.lock | 2 +- 17 files changed, 26 insertions(+), 26 deletions(-) diff --git a/bun.lock b/bun.lock index 49a1ec1627..4005df50c8 100644 --- a/bun.lock +++ b/bun.lock @@ -74,7 +74,7 @@ }, "js/auth": { "name": "@moq/auth", - "version": "0.2.0", + "version": "0.2.1", "bin": { "moq-auth": "./src/cli.ts", }, @@ -95,7 +95,7 @@ }, "js/binary": { "name": "@moq/binary", - "version": "0.2.0", + "version": "0.2.1", "dependencies": { "@moq/flate": "workspace:^", "@moq/net": "workspace:^", @@ -138,7 +138,7 @@ }, "js/hang": { "name": "@moq/hang", - "version": "0.5.0", + "version": "0.5.1", "dependencies": { "@kixelated/libavjs-webcodecs-polyfill": "^0.5.5", "@libav.js/variant-opus-af": "^6.10.9", @@ -162,7 +162,7 @@ }, "js/json": { "name": "@moq/json", - "version": "0.4.0", + "version": "0.4.1", "dependencies": { "@moq/flate": "workspace:^", "@moq/net": "workspace:^", @@ -192,7 +192,7 @@ }, "js/moq-boy": { "name": "@moq/boy", - "version": "0.4.0", + "version": "0.4.1", "dependencies": { "@moq/json": "workspace:^", "@moq/net": "workspace:^", @@ -226,7 +226,7 @@ }, "js/net": { "name": "@moq/net", - "version": "0.4.0", + "version": "0.4.1", "dependencies": { "@moq/pattern": "workspace:^", "@moq/qmux": "^0.3.3", @@ -258,7 +258,7 @@ }, "js/publish": { "name": "@moq/publish", - "version": "0.5.0", + "version": "0.5.1", "dependencies": { "@moq/hang": "workspace:^", "@moq/json": "workspace:^", @@ -278,7 +278,7 @@ }, "js/room": { "name": "@moq/room", - "version": "0.2.0", + "version": "0.2.1", "dependencies": { "@moq/hang": "workspace:^", "@moq/json": "workspace:^", @@ -298,7 +298,7 @@ }, "js/signals": { "name": "@moq/signals", - "version": "0.2.4", + "version": "0.2.5", "devDependencies": { "@types/bun": "^1.4.2", "@types/react": "^19.3.0", @@ -324,7 +324,7 @@ }, "js/watch": { "name": "@moq/watch", - "version": "0.6.0", + "version": "0.6.1", "dependencies": { "@moq/hang": "workspace:^", "@moq/json": "workspace:^", diff --git a/js/auth/package.json b/js/auth/package.json index 45b8056bda..60f2a21c2d 100644 --- a/js/auth/package.json +++ b/js/auth/package.json @@ -1,7 +1,7 @@ { "name": "@moq/auth", "type": "module", - "version": "0.2.0", + "version": "0.2.1", "description": "Media over QUIC - the authorization contract: requests, grants, and the JWT that rides them", "license": "(MIT OR Apache-2.0)", "repository": { diff --git a/js/binary/package.json b/js/binary/package.json index 849e5f012a..fa1f4487fb 100644 --- a/js/binary/package.json +++ b/js/binary/package.json @@ -1,7 +1,7 @@ { "name": "@moq/binary", "type": "module", - "version": "0.2.0", + "version": "0.2.1", "description": "Binary publishing over MoQ tracks: latest-value snapshots, or append-log streams.", "license": "(MIT OR Apache-2.0)", "repository": { diff --git a/js/hang/package.json b/js/hang/package.json index 5b38723514..51bcaf28d6 100644 --- a/js/hang/package.json +++ b/js/hang/package.json @@ -1,7 +1,7 @@ { "name": "@moq/hang", "type": "module", - "version": "0.5.0", + "version": "0.5.1", "description": "WebCodecs-based media format for MoQ", "license": "(MIT OR Apache-2.0)", "repository": { diff --git a/js/json/package.json b/js/json/package.json index 6bb51ecc61..989fa04116 100644 --- a/js/json/package.json +++ b/js/json/package.json @@ -1,7 +1,7 @@ { "name": "@moq/json", "type": "module", - "version": "0.4.0", + "version": "0.4.1", "description": "JSON publishing over MoQ tracks: snapshot/delta (RFC 7396 merge patch) objects, or append-log NDJSON streams.", "license": "(MIT OR Apache-2.0)", "repository": { diff --git a/js/moq-boy/package.json b/js/moq-boy/package.json index 6d29510d5e..51ad777bff 100644 --- a/js/moq-boy/package.json +++ b/js/moq-boy/package.json @@ -1,7 +1,7 @@ { "name": "@moq/boy", "type": "module", - "version": "0.4.0", + "version": "0.4.1", "jsr": false, "description": "MoQ Boy - Crowd-controlled Game Boy streaming via MoQ", "license": "(MIT OR Apache-2.0)", diff --git a/js/net/package.json b/js/net/package.json index bc5620c6f0..ce53b03637 100644 --- a/js/net/package.json +++ b/js/net/package.json @@ -1,7 +1,7 @@ { "name": "@moq/net", "type": "module", - "version": "0.4.0", + "version": "0.4.1", "description": "The networking layer for Media over QUIC: real-time pub/sub with built-in caching, fan-out, and prioritization.", "license": "(MIT OR Apache-2.0)", "repository": { diff --git a/js/publish/package.json b/js/publish/package.json index e9c38f3ea4..f1b4cd30a7 100644 --- a/js/publish/package.json +++ b/js/publish/package.json @@ -1,7 +1,7 @@ { "name": "@moq/publish", "type": "module", - "version": "0.5.0", + "version": "0.5.1", "jsr": false, "description": "Publish Media over QUIC broadcasts", "license": "(MIT OR Apache-2.0)", diff --git a/js/room/package.json b/js/room/package.json index 532c04390a..18381bf6fd 100644 --- a/js/room/package.json +++ b/js/room/package.json @@ -1,7 +1,7 @@ { "name": "@moq/room", "type": "module", - "version": "0.2.0", + "version": "0.2.1", "description": "Headless multi-participant rooms over MoQ: announce-derived roster, local publish, remote watch, and a chat track", "license": "(MIT OR Apache-2.0)", "repository": { diff --git a/js/signals/package.json b/js/signals/package.json index acc547b8f1..cd9387dee7 100644 --- a/js/signals/package.json +++ b/js/signals/package.json @@ -1,7 +1,7 @@ { "name": "@moq/signals", "type": "module", - "version": "0.2.4", + "version": "0.2.5", "description": "Reactive and safe signals", "license": "(MIT OR Apache-2.0)", "repository": { diff --git a/js/watch/package.json b/js/watch/package.json index 9b4a0016eb..7055fb40b0 100644 --- a/js/watch/package.json +++ b/js/watch/package.json @@ -1,7 +1,7 @@ { "name": "@moq/watch", "type": "module", - "version": "0.6.0", + "version": "0.6.1", "jsr": false, "description": "Watch Media over QUIC broadcasts", "license": "(MIT OR Apache-2.0)", diff --git a/kt/README.md b/kt/README.md index e9d4ec3de7..62c509e960 100644 --- a/kt/README.md +++ b/kt/README.md @@ -14,7 +14,7 @@ Most apps want `dev.moq:moq`. Reach for `dev.moq:moq-ffi` directly only if you w ```kotlin ignore // build.gradle.kts dependencies { - implementation("dev.moq:moq:0.5.0") + implementation("dev.moq:moq:0.5.1") implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0") } ``` diff --git a/kt/gradle.properties b/kt/gradle.properties index 94109cbaf9..8967643904 100644 --- a/kt/gradle.properties +++ b/kt/gradle.properties @@ -14,7 +14,7 @@ moqffi.version=0.0.0-dev # Wrapper (`dev.moq:moq`) version. Source of truth, bumped by hand. Independent # of the crate: release-kt-lib.yml publishes a new version only when this # changes. Must stay >= the last published wrapper version. -moq.version=0.5.0 +moq.version=0.5.1 # Publishing is disabled by default. CI flips this when MAVEN_CENTRAL_USERNAME # and SIGNING_KEY secrets are configured. See README.md for setup details. diff --git a/py/moq-rs/pyproject.toml b/py/moq-rs/pyproject.toml index 815d863c29..71c3999f46 100644 --- a/py/moq-rs/pyproject.toml +++ b/py/moq-rs/pyproject.toml @@ -14,7 +14,7 @@ name = "moq-rs" # isn't already there (no tag needed; the registry is the gate). # Starts at 0.3.0 to open a new line above the old lockstep 0.2.x releases that # bundled the bindings. -version = "0.5.0" +version = "0.5.1" description = "Media over QUIC: real-time pub/sub with built-in caching, fan-out, and prioritization, with a Pythonic API. Import as `moq`." readme = "README.md" license = "MIT OR Apache-2.0" diff --git a/swift/README.md b/swift/README.md index a953a0c648..766f1ff96e 100644 --- a/swift/README.md +++ b/swift/README.md @@ -16,7 +16,7 @@ The Swift integration ships as two SPM packages, each mirrored to its own repo: ## Install ```swift ignore -.package(url: "https://github.com/moq-dev/moq-swift", from: "0.5.0"), +.package(url: "https://github.com/moq-dev/moq-swift", from: "0.5.1"), ``` SPM resolves `MoqFFI` (and its prebuilt `MoqFFI.xcframework`, attached to the matching `moq-ffi-v*` GitHub Release) transitively. You only depend on `moq-swift`. diff --git a/swift/VERSION b/swift/VERSION index 8f0916f768..4b9fcbec10 100644 --- a/swift/VERSION +++ b/swift/VERSION @@ -1 +1 @@ -0.5.0 +0.5.1 diff --git a/uv.lock b/uv.lock index 5856edeab7..feb20b9b8a 100644 --- a/uv.lock +++ b/uv.lock @@ -509,7 +509,7 @@ source = { editable = "py/moq-ffi" } [[package]] name = "moq-rs" -version = "0.5.0" +version = "0.5.1" source = { editable = "py/moq-rs" } dependencies = [ { name = "moq-ffi" },