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
20 changes: 10 additions & 10 deletions bun.lock

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

2 changes: 1 addition & 1 deletion js/auth/package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down
2 changes: 1 addition & 1 deletion js/binary/package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down
2 changes: 1 addition & 1 deletion js/hang/package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down
2 changes: 1 addition & 1 deletion js/json/package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down
2 changes: 1 addition & 1 deletion js/moq-boy/package.json
Original file line number Diff line number Diff line change
@@ -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)",
Expand Down
2 changes: 1 addition & 1 deletion js/net/package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down
2 changes: 1 addition & 1 deletion js/publish/package.json
Original file line number Diff line number Diff line change
@@ -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)",
Expand Down
2 changes: 1 addition & 1 deletion js/room/package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down
2 changes: 1 addition & 1 deletion js/signals/package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down
2 changes: 1 addition & 1 deletion js/watch/package.json
Original file line number Diff line number Diff line change
@@ -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)",
Expand Down
2 changes: 1 addition & 1 deletion kt/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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")
}
```
Expand Down
2 changes: 1 addition & 1 deletion kt/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion py/moq-rs/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion swift/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`.
Expand Down
2 changes: 1 addition & 1 deletion swift/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.5.0
0.5.1
2 changes: 1 addition & 1 deletion uv.lock

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

Loading