Skip to content

Commit 1d6f474

Browse files
authored
chore: release
1 parent 34120e6 commit 1d6f474

31 files changed

Lines changed: 220 additions & 97 deletions

Cargo.lock

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

Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -48,16 +48,16 @@ rust-version = "1.85"
4848

4949
[workspace.dependencies]
5050
hang = { version = "0.19", path = "rs/hang" }
51-
kio = { version = "0.3", path = "rs/kio" }
52-
moq-audio = { version = "0.0.3", path = "rs/moq-audio" }
53-
moq-json = { version = "0.0.2", path = "rs/moq-json" }
51+
kio = { version = "0.4", path = "rs/kio" }
52+
moq-audio = { version = "0.0.4", path = "rs/moq-audio" }
53+
moq-json = { version = "0.0.3", path = "rs/moq-json" }
5454
moq-loc = { version = "0.1", path = "rs/moq-loc" }
5555
moq-msf = { version = "0.2", path = "rs/moq-msf" }
5656
moq-mux = { version = "0.5", path = "rs/moq-mux" }
57-
moq-native = { version = "0.17", path = "rs/moq-native", default-features = false }
57+
moq-native = { version = "0.18", path = "rs/moq-native", default-features = false }
5858
moq-net = { version = "0.1", path = "rs/moq-net" }
5959
moq-token = { version = "0.6", path = "rs/moq-token" }
60-
moq-video = { version = "0.0.3", path = "rs/moq-video" }
60+
moq-video = { version = "0.0.4", path = "rs/moq-video" }
6161
qmux = { version = "0.0.8", default-features = false }
6262

6363
serde = { version = "1", features = ["derive"] }

rs/hang/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.19.1](https://github.com/moq-dev/moq/compare/hang-v0.19.0...hang-v0.19.1) - 2026-06-16
11+
12+
### Other
13+
14+
- ingest and export legacy non-browser broadcast audio over MPEG-TS mp2, ac-3 & e-ac-3 ([#1701](https://github.com/moq-dev/moq/pull/1701))
15+
- *(demo,doc)* drop redundant /anon prefix from localhost URLs ([#1688](https://github.com/moq-dev/moq/pull/1688))
16+
1017
## [0.19.0](https://github.com/moq-dev/moq/compare/hang-v0.18.1...hang-v0.19.0) - 2026-06-10
1118

1219
### Added

rs/hang/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ authors = ["Luke Curley <kixelated@gmail.com>"]
55
repository = "https://github.com/moq-dev/moq"
66
license = "MIT OR Apache-2.0"
77

8-
version = "0.19.0"
8+
version = "0.19.1"
99
edition = "2024"
1010
rust-version.workspace = true
1111

rs/kio/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.4.0](https://github.com/moq-dev/moq/compare/kio-v0.3.0...kio-v0.4.0) - 2026-06-16
11+
12+
### Fixed
13+
14+
- *(kio)* split waiters by condition so writes don't churn closed/consumer waiters ([#1739](https://github.com/moq-dev/moq/pull/1739))
15+
- *(moq-net)* release cached state when a producer is aborted or dropped ([#1715](https://github.com/moq-dev/moq/pull/1715))
16+
17+
### Other
18+
19+
- rework Producer::poll/wait to a read-only predicate that returns a Mut ([#1735](https://github.com/moq-dev/moq/pull/1735))
20+
1021
### Fixed
1122

1223
- Split the internal waiter list into separate value / closed / consumer lists,

rs/kio/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ authors = ["Luke Curley"]
55
repository = "https://github.com/moq-dev/moq"
66
license = "MIT OR Apache-2.0"
77

8-
version = "0.3.0"
8+
version = "0.4.0"
99
edition = "2024"
1010
rust-version.workspace = true
1111

rs/libmoq/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.3.5](https://github.com/moq-dev/moq/compare/libmoq-v0.3.4...libmoq-v0.3.5) - 2026-06-16
11+
12+
### Fixed
13+
14+
- *(native)* surface terminal auth connect errors ([#1649](https://github.com/moq-dev/moq/pull/1649))
15+
1016
## [0.3.4](https://github.com/moq-dev/moq/compare/libmoq-v0.3.3...libmoq-v0.3.4) - 2026-06-10
1117

1218
### Added

rs/libmoq/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ authors = ["Luke Curley <kixelated@gmail.com>", "Brian Medley <bpm@bmedley.org>"
55
repository = "https://github.com/moq-dev/moq"
66
license = "MIT OR Apache-2.0"
77

8-
version = "0.3.4"
8+
version = "0.3.5"
99
edition = "2024"
1010
rust-version.workspace = true
1111

rs/moq-audio/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.0.4](https://github.com/moq-dev/moq/compare/moq-audio-v0.0.3...moq-audio-v0.0.4) - 2026-06-16
11+
12+
### Fixed
13+
14+
- *(moq-audio)* surface denied/unavailable mic instead of hanging ([#1708](https://github.com/moq-dev/moq/pull/1708))
15+
1016
## [0.0.3](https://github.com/moq-dev/moq/compare/moq-audio-v0.0.2...moq-audio-v0.0.3) - 2026-06-10
1117

1218
### Added

rs/moq-audio/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ authors = ["Luke Curley <kixelated@gmail.com>"]
55
repository = "https://github.com/moq-dev/moq"
66
license = "MIT OR Apache-2.0"
77

8-
version = "0.0.3"
8+
version = "0.0.4"
99
edition = "2024"
1010
rust-version.workspace = true
1111

0 commit comments

Comments
 (0)