Skip to content

Commit 7d25879

Browse files
authored
chore: release
1 parent 7ae2be4 commit 7d25879

38 files changed

Lines changed: 240 additions & 67 deletions

Cargo.lock

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

Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,8 @@ kio = { version = "0.5", path = "rs/kio" }
8181
loom = { version = "0.7.2", features = ["futures"] }
8282
moq-audio = { version = "0.0.15", path = "rs/moq-audio" }
8383
moq-flate = { version = "0.1.1", path = "rs/moq-flate" }
84-
moq-hls = { version = "0.4.4", path = "rs/moq-hls", default-features = false }
85-
moq-json = { version = "0.3.2", path = "rs/moq-json" }
84+
moq-hls = { version = "0.4.5", path = "rs/moq-hls", default-features = false }
85+
moq-json = { version = "0.3.3", path = "rs/moq-json" }
8686
moq-loc = { version = "0.2", path = "rs/moq-loc" }
8787
moq-msf = { version = "0.4", path = "rs/moq-msf" }
8888
moq-mux = { version = "0.9", path = "rs/moq-mux" }
@@ -93,20 +93,20 @@ moq-net = { version = "0.2", path = "rs/moq-net" }
9393
# used by moq-video on Linux.
9494
moq-nvenc = { version = "0.0.3", path = "rs/moq-nvenc" }
9595
moq-rtc = { version = "0.2.2", path = "rs/moq-rtc" }
96-
moq-rtmp = { version = "0.2.2", path = "rs/moq-rtmp" }
96+
moq-rtmp = { version = "0.2.3", path = "rs/moq-rtmp" }
9797
moq-srt = { version = "0.2.3", path = "rs/moq-srt" }
98-
moq-stats = { version = "0.1.3", path = "rs/moq-stats" }
98+
moq-stats = { version = "0.1.4", path = "rs/moq-stats" }
9999
moq-token = { version = "0.7", path = "rs/moq-token" }
100100
moq-token-cli = { version = "0.5", path = "rs/moq-token-cli" }
101101
# default-features off (the hardware codecs) on moq-transcode and moq-video so
102102
# each consumer opts in: binaries (libmoq, moq-boy, moq-cli) enable them, but a
103103
# self-compiler can leave them off to drop the CUDA / libva deps. Both crates
104104
# still default them on when depended on directly.
105-
moq-transcode = { version = "0.0.6", path = "rs/moq-transcode", default-features = false }
105+
moq-transcode = { version = "0.0.7", path = "rs/moq-transcode", default-features = false }
106106
# Standalone crate (moq-dev/vaapi); vendored from cros-libva + cros-codecs.
107107
# dlopen's libva at runtime (no libva-dev at build, no NEEDED libva in the binary).
108108
moq-vaapi = "0.0.3"
109-
moq-video = { version = "0.0.12", path = "rs/moq-video", default-features = false }
109+
moq-video = { version = "0.0.13", path = "rs/moq-video", default-features = false }
110110
percent-encoding = "2"
111111
qmux = { version = "0.4.0", default-features = false }
112112
serde = { version = "1", features = ["derive"] }

rs/hang/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.20.3](https://github.com/moq-dev/moq/compare/hang-v0.20.2...hang-v0.20.3) - 2026-08-05
11+
12+
### Fixed
13+
14+
- *(hang)* reverse bits, not bytes, in the HEVC codec string ([#2658](https://github.com/moq-dev/moq/pull/2658))
15+
16+
### Other
17+
18+
- *(rs)* clean up pedantic clippy warnings ([#2621](https://github.com/moq-dev/moq/pull/2621))
19+
1020
## [0.20.2](https://github.com/moq-dev/moq/compare/hang-v0.20.1...hang-v0.20.2) - 2026-07-27
1121

1222
### Fixed

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.20.2"
8+
version = "0.20.3"
99
edition = "2024"
1010
rust-version.workspace = true
1111

rs/kio/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.5.4](https://github.com/moq-dev/moq/compare/kio-v0.5.3...kio-v0.5.4) - 2026-08-05
11+
12+
### Added
13+
14+
- *(kio)* add Fan, a waker for a whole WaiterList ([#2604](https://github.com/moq-dev/moq/pull/2604))
15+
1016
## [0.5.3](https://github.com/moq-dev/moq/compare/kio-v0.5.2...kio-v0.5.3) - 2026-08-03
1117

1218
### Added

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.5.3"
8+
version = "0.5.4"
99
edition = "2024"
1010
rust-version.workspace = true
1111

0 commit comments

Comments
 (0)