diff --git a/Cargo.lock b/Cargo.lock index 3c2a179d39..618830469a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3930,7 +3930,7 @@ checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981" [[package]] name = "libmoq" -version = "0.4.0" +version = "0.4.1" dependencies = [ "anyhow", "bytes", @@ -4178,7 +4178,7 @@ dependencies = [ [[package]] name = "moq-audio" -version = "0.0.10" +version = "0.0.11" dependencies = [ "block2", "bytes", @@ -4221,7 +4221,7 @@ dependencies = [ [[package]] name = "moq-boy" -version = "0.3.0" +version = "0.3.1" dependencies = [ "anyhow", "boytacean", @@ -4242,7 +4242,7 @@ dependencies = [ [[package]] name = "moq-cli" -version = "0.9.0" +version = "0.9.1" dependencies = [ "anyhow", "axum", @@ -4270,7 +4270,7 @@ dependencies = [ [[package]] name = "moq-ffi" -version = "0.3.0" +version = "0.3.1" dependencies = [ "bytes", "hang", @@ -4299,7 +4299,7 @@ dependencies = [ [[package]] name = "moq-gst" -version = "0.3.0" +version = "0.3.1" dependencies = [ "anyhow", "bytes", @@ -4338,7 +4338,7 @@ dependencies = [ [[package]] name = "moq-json" -version = "0.3.0" +version = "0.3.1" dependencies = [ "bytes", "criterion", @@ -4372,7 +4372,7 @@ dependencies = [ [[package]] name = "moq-mux" -version = "0.8.0" +version = "0.8.1" dependencies = [ "anyhow", "base64", @@ -4403,7 +4403,7 @@ dependencies = [ [[package]] name = "moq-native" -version = "0.19.0" +version = "0.19.1" dependencies = [ "anyhow", "bytes", @@ -4454,7 +4454,7 @@ dependencies = [ [[package]] name = "moq-net" -version = "0.2.0" +version = "0.2.1" dependencies = [ "bytes", "criterion", @@ -4475,7 +4475,7 @@ dependencies = [ [[package]] name = "moq-nvenc" -version = "0.0.1" +version = "0.0.2" dependencies = [ "cudarc", "lazy_static", @@ -4484,7 +4484,7 @@ dependencies = [ [[package]] name = "moq-relay" -version = "0.14.0" +version = "0.14.1" dependencies = [ "anyhow", "axum", @@ -4584,7 +4584,7 @@ dependencies = [ [[package]] name = "moq-stats" -version = "0.1.0" +version = "0.1.1" dependencies = [ "futures", "moq-json", @@ -4627,7 +4627,7 @@ dependencies = [ [[package]] name = "moq-transcode" -version = "0.0.1" +version = "0.0.2" dependencies = [ "anyhow", "bytes", @@ -4660,7 +4660,7 @@ dependencies = [ [[package]] name = "moq-video" -version = "0.0.7" +version = "0.0.8" dependencies = [ "anyhow", "ashpd", @@ -6941,9 +6941,9 @@ dependencies = [ [[package]] name = "rustls-pki-types" -version = "1.15.0" +version = "1.15.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "764899a24af3980067ee14bc143654f297b22eaebfe3c7b6b211920a5a59b046" +checksum = "2f4925028c7eb5d1fcdaf196971378ed9d2c1c4efc7dc5d011256f76c99c0a96" dependencies = [ "web-time", "zeroize", diff --git a/Cargo.toml b/Cargo.toml index 63a5a0f3db..65d33f0f16 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -76,10 +76,10 @@ rust-version = "1.91" flate2 = "1.1" hang = { version = "0.20", path = "rs/hang" } kio = { version = "0.5", path = "rs/kio" } -moq-audio = { version = "0.0.10", path = "rs/moq-audio" } +moq-audio = { version = "0.0.11", path = "rs/moq-audio" } moq-flate = { version = "0.1.1", path = "rs/moq-flate" } moq-hls = { version = "0.4.0", path = "rs/moq-hls", default-features = false } -moq-json = { version = "0.3.0", path = "rs/moq-json" } +moq-json = { version = "0.3.1", path = "rs/moq-json" } moq-loc = { version = "0.2", path = "rs/moq-loc" } moq-msf = { version = "0.4", path = "rs/moq-msf" } moq-mux = { version = "0.8", path = "rs/moq-mux" } @@ -88,20 +88,20 @@ moq-net = { version = "0.2", path = "rs/moq-net" } # NVENC bindings, forked from ViliamVadocz/nvidia-video-codec-sdk to dlopen the # driver at runtime. Compiles on any platform (macOS included) but only actually # used by moq-video on Linux. -moq-nvenc = { version = "0.0.1", path = "rs/moq-nvenc" } +moq-nvenc = { version = "0.0.2", path = "rs/moq-nvenc" } moq-rtc = { version = "0.2.0", path = "rs/moq-rtc" } moq-rtmp = { version = "0.2.0", path = "rs/moq-rtmp" } moq-srt = { version = "0.2.0", path = "rs/moq-srt" } -moq-stats = { version = "0.1.0", path = "rs/moq-stats" } +moq-stats = { version = "0.1.1", path = "rs/moq-stats" } moq-token = { version = "0.7", path = "rs/moq-token" } # default-features off (the hardware codecs) on moq-transcode and moq-video so # each consumer opts in: binaries (libmoq, moq-boy, moq-cli) enable them, but a # self-compiler can leave them off to drop the CUDA / libva deps. Both crates # still default them on when depended on directly. -moq-transcode = { version = "0.0.1", path = "rs/moq-transcode", default-features = false } +moq-transcode = { version = "0.0.2", path = "rs/moq-transcode", default-features = false } # Standalone crate (moq-dev/vaapi); vendored from cros-libva + cros-codecs. moq-vaapi = "0.0.2" -moq-video = { version = "0.0.7", path = "rs/moq-video", default-features = false } +moq-video = { version = "0.0.8", path = "rs/moq-video", default-features = false } qmux = { version = "0.4.0", default-features = false } serde = { version = "1", features = ["derive"] } tokio = "1.48" diff --git a/rs/libmoq/CHANGELOG.md b/rs/libmoq/CHANGELOG.md index 5baf6e524d..6d90e7ee7a 100644 --- a/rs/libmoq/CHANGELOG.md +++ b/rs/libmoq/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.4.1](https://github.com/moq-dev/moq/compare/libmoq-v0.4.0...libmoq-v0.4.1) - 2026-07-23 + +### Other + +- updated the following local packages: moq-json, moq-audio, moq-video + ## [0.4.0](https://github.com/moq-dev/moq/compare/libmoq-v0.3.14...libmoq-v0.4.0) - 2026-07-22 ### Fixed diff --git a/rs/libmoq/Cargo.toml b/rs/libmoq/Cargo.toml index 3bad676b04..9d58f0d917 100644 --- a/rs/libmoq/Cargo.toml +++ b/rs/libmoq/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Luke Curley ", "Brian Medley " repository = "https://github.com/moq-dev/moq" license = "MIT OR Apache-2.0" -version = "0.4.0" +version = "0.4.1" edition = "2024" rust-version.workspace = true diff --git a/rs/moq-audio/CHANGELOG.md b/rs/moq-audio/CHANGELOG.md index a9701585bf..ca8c572980 100644 --- a/rs/moq-audio/CHANGELOG.md +++ b/rs/moq-audio/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.11](https://github.com/moq-dev/moq/compare/moq-audio-v0.0.10...moq-audio-v0.0.11) - 2026-07-23 + +### Other + +- *(rust)* pin the toolchain and correct the MSRV claims ([#2462](https://github.com/moq-dev/moq/pull/2462)) + ## [0.0.10](https://github.com/moq-dev/moq/compare/moq-audio-v0.0.9...moq-audio-v0.0.10) - 2026-07-22 ### Fixed diff --git a/rs/moq-audio/Cargo.toml b/rs/moq-audio/Cargo.toml index 290eb891cf..b1a9efffb7 100644 --- a/rs/moq-audio/Cargo.toml +++ b/rs/moq-audio/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Luke Curley "] repository = "https://github.com/moq-dev/moq" license = "MIT OR Apache-2.0" -version = "0.0.10" +version = "0.0.11" edition = "2024" rust-version.workspace = true diff --git a/rs/moq-boy/CHANGELOG.md b/rs/moq-boy/CHANGELOG.md index 22a334b1ef..7989aa84c3 100644 --- a/rs/moq-boy/CHANGELOG.md +++ b/rs/moq-boy/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.3.1](https://github.com/moq-dev/moq/compare/moq-boy-v0.3.0...moq-boy-v0.3.1) - 2026-07-23 + +### Other + +- *(rust)* pin the toolchain and correct the MSRV claims ([#2462](https://github.com/moq-dev/moq/pull/2462)) + ## [0.3.0](https://github.com/moq-dev/moq/compare/moq-boy-v0.2.28...moq-boy-v0.3.0) - 2026-07-22 ### Other diff --git a/rs/moq-boy/Cargo.toml b/rs/moq-boy/Cargo.toml index 85b5d55339..70e02cb95b 100644 --- a/rs/moq-boy/Cargo.toml +++ b/rs/moq-boy/Cargo.toml @@ -7,7 +7,7 @@ license = "MIT OR Apache-2.0" keywords = ["moq", "gameboy", "streaming", "emulator", "live"] categories = ["multimedia::video", "emulators", "network-programming"] -version = "0.3.0" +version = "0.3.1" edition = "2024" rust-version.workspace = true diff --git a/rs/moq-cli/CHANGELOG.md b/rs/moq-cli/CHANGELOG.md index 17c0fcbe0a..767dc32381 100644 --- a/rs/moq-cli/CHANGELOG.md +++ b/rs/moq-cli/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.9.1](https://github.com/moq-dev/moq/compare/moq-cli-v0.9.0...moq-cli-v0.9.1) - 2026-07-23 + +### Other + +- *(rust)* pin the toolchain and correct the MSRV claims ([#2462](https://github.com/moq-dev/moq/pull/2462)) + ## [0.9.0](https://github.com/moq-dev/moq/compare/moq-cli-v0.8.7...moq-cli-v0.9.0) - 2026-07-22 ### Fixed diff --git a/rs/moq-cli/Cargo.toml b/rs/moq-cli/Cargo.toml index fb91eca551..52f5ba7023 100644 --- a/rs/moq-cli/Cargo.toml +++ b/rs/moq-cli/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Luke Curley "] repository = "https://github.com/moq-dev/moq" license = "MIT OR Apache-2.0" -version = "0.9.0" +version = "0.9.1" edition = "2024" rust-version.workspace = true diff --git a/rs/moq-ffi/CHANGELOG.md b/rs/moq-ffi/CHANGELOG.md index 8e056d2aa1..04ce154fed 100644 --- a/rs/moq-ffi/CHANGELOG.md +++ b/rs/moq-ffi/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.3.1](https://github.com/moq-dev/moq/compare/moq-ffi-v0.3.0...moq-ffi-v0.3.1) - 2026-07-23 + +### Fixed + +- *(moq-ffi)* pin uniffi to 0.31 for uniffi-bindgen-go compatibility ([#2452](https://github.com/moq-dev/moq/pull/2452)) + ## [0.3.0](https://github.com/moq-dev/moq/compare/moq-ffi-v0.2.33...moq-ffi-v0.3.0) - 2026-07-22 ### Fixed diff --git a/rs/moq-ffi/Cargo.toml b/rs/moq-ffi/Cargo.toml index 3143246aa5..c5e1b22e4c 100644 --- a/rs/moq-ffi/Cargo.toml +++ b/rs/moq-ffi/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Luke Curley ", "Brian Medley " repository = "https://github.com/moq-dev/moq" license = "MIT OR Apache-2.0" -version = "0.3.0" +version = "0.3.1" edition = "2024" keywords = ["quic", "http3", "webtransport", "media", "live"] diff --git a/rs/moq-gst/CHANGELOG.md b/rs/moq-gst/CHANGELOG.md index 7bdbb31cde..babea25bfb 100644 --- a/rs/moq-gst/CHANGELOG.md +++ b/rs/moq-gst/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.3.1](https://github.com/moq-dev/moq/compare/moq-gst-v0.3.0...moq-gst-v0.3.1) - 2026-07-23 + +### Other + +- *(rust)* pin the toolchain and correct the MSRV claims ([#2462](https://github.com/moq-dev/moq/pull/2462)) + ## [0.3.0](https://github.com/moq-dev/moq/compare/moq-gst-v0.2.12...moq-gst-v0.3.0) - 2026-07-22 ### Added diff --git a/rs/moq-gst/Cargo.toml b/rs/moq-gst/Cargo.toml index 5b60e061f6..e574e2220b 100644 --- a/rs/moq-gst/Cargo.toml +++ b/rs/moq-gst/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Luke Curley"] repository = "https://github.com/kixelated/moq" license = "MIT OR Apache-2.0" -version = "0.3.0" +version = "0.3.1" edition = "2024" rust-version.workspace = true publish = true diff --git a/rs/moq-json/CHANGELOG.md b/rs/moq-json/CHANGELOG.md index 4f94182bb6..ba06808080 100644 --- a/rs/moq-json/CHANGELOG.md +++ b/rs/moq-json/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.3.1](https://github.com/moq-dev/moq/compare/moq-json-v0.3.0...moq-json-v0.3.1) - 2026-07-23 + +### Other + +- *(rust)* pin the toolchain and correct the MSRV claims ([#2462](https://github.com/moq-dev/moq/pull/2462)) + ## [0.3.0](https://github.com/moq-dev/moq/compare/moq-json-v0.2.0...moq-json-v0.3.0) - 2026-07-22 ### Added diff --git a/rs/moq-json/Cargo.toml b/rs/moq-json/Cargo.toml index d2d0666647..37e7de322a 100644 --- a/rs/moq-json/Cargo.toml +++ b/rs/moq-json/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Luke Curley "] repository = "https://github.com/moq-dev/moq" license = "MIT OR Apache-2.0" -version = "0.3.0" +version = "0.3.1" edition = "2024" rust-version.workspace = true diff --git a/rs/moq-mux/CHANGELOG.md b/rs/moq-mux/CHANGELOG.md index 3bfb9b46c0..5569c231a3 100644 --- a/rs/moq-mux/CHANGELOG.md +++ b/rs/moq-mux/CHANGELOG.md @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.8.1](https://github.com/moq-dev/moq/compare/moq-mux-v0.8.0...moq-mux-v0.8.1) - 2026-07-23 + +### Added + +- *(mux)* hvc1 support for import::Track ([#2444](https://github.com/moq-dev/moq/pull/2444)) + +### Other + +- *(rust)* pin the toolchain and correct the MSRV claims ([#2462](https://github.com/moq-dev/moq/pull/2462)) + ## [0.8.0](https://github.com/moq-dev/moq/compare/moq-mux-v0.7.6...moq-mux-v0.8.0) - 2026-07-22 ### Added diff --git a/rs/moq-mux/Cargo.toml b/rs/moq-mux/Cargo.toml index a8bd9d6616..70170ebed5 100644 --- a/rs/moq-mux/Cargo.toml +++ b/rs/moq-mux/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Luke Curley "] repository = "https://github.com/moq-dev/moq" license = "MIT OR Apache-2.0" -version = "0.8.0" +version = "0.8.1" edition = "2024" rust-version.workspace = true diff --git a/rs/moq-native/CHANGELOG.md b/rs/moq-native/CHANGELOG.md index 3da06731b3..d1732115d8 100644 --- a/rs/moq-native/CHANGELOG.md +++ b/rs/moq-native/CHANGELOG.md @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.19.1](https://github.com/moq-dev/moq/compare/moq-native-v0.19.0...moq-native-v0.19.1) - 2026-07-23 + +### Added + +- *(native)* capture qlog traces on the quinn, quiche, and noq backends ([#2451](https://github.com/moq-dev/moq/pull/2451)) + +### Other + +- *(rust)* pin the toolchain and correct the MSRV claims ([#2462](https://github.com/moq-dev/moq/pull/2462)) + ## [0.19.0](https://github.com/moq-dev/moq/compare/moq-native-v0.18.3...moq-native-v0.19.0) - 2026-07-22 ### Added diff --git a/rs/moq-native/Cargo.toml b/rs/moq-native/Cargo.toml index 69873f08fa..295792a3b9 100644 --- a/rs/moq-native/Cargo.toml +++ b/rs/moq-native/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Luke Curley"] repository = "https://github.com/moq-dev/moq" license = "MIT OR Apache-2.0" -version = "0.19.0" +version = "0.19.1" edition = "2024" rust-version.workspace = true diff --git a/rs/moq-net/CHANGELOG.md b/rs/moq-net/CHANGELOG.md index eb0b542c61..2e80336f0e 100644 --- a/rs/moq-net/CHANGELOG.md +++ b/rs/moq-net/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.1](https://github.com/moq-dev/moq/compare/moq-net-v0.2.0...moq-net-v0.2.1) - 2026-07-23 + +### Other + +- *(rust)* pin the toolchain and correct the MSRV claims ([#2462](https://github.com/moq-dev/moq/pull/2462)) + ## [0.2.0](https://github.com/moq-dev/moq/compare/moq-net-v0.1.18...moq-net-v0.2.0) - 2026-07-22 ### Added diff --git a/rs/moq-net/Cargo.toml b/rs/moq-net/Cargo.toml index 956f1aca3b..5b7794cafb 100644 --- a/rs/moq-net/Cargo.toml +++ b/rs/moq-net/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Luke Curley"] repository = "https://github.com/moq-dev/moq" license = "MIT OR Apache-2.0" -version = "0.2.0" +version = "0.2.1" edition = "2024" rust-version.workspace = true diff --git a/rs/moq-nvenc/CHANGELOG.md b/rs/moq-nvenc/CHANGELOG.md new file mode 100644 index 0000000000..4a5cb18692 --- /dev/null +++ b/rs/moq-nvenc/CHANGELOG.md @@ -0,0 +1,14 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased] + +## [0.0.2](https://github.com/moq-dev/moq/compare/moq-nvenc-v0.0.1...moq-nvenc-v0.0.2) - 2026-07-23 + +### Other + +- *(rust)* pin the toolchain and correct the MSRV claims ([#2462](https://github.com/moq-dev/moq/pull/2462)) diff --git a/rs/moq-nvenc/Cargo.toml b/rs/moq-nvenc/Cargo.toml index 43bc33c4db..af72ac5421 100644 --- a/rs/moq-nvenc/Cargo.toml +++ b/rs/moq-nvenc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "moq-nvenc" -version = "0.0.1" +version = "0.0.2" edition = "2021" license = "MIT" rust-version.workspace = true diff --git a/rs/moq-relay/CHANGELOG.md b/rs/moq-relay/CHANGELOG.md index 7a23507fac..2fa81d79c0 100644 --- a/rs/moq-relay/CHANGELOG.md +++ b/rs/moq-relay/CHANGELOG.md @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.14.1](https://github.com/moq-dev/moq/compare/moq-relay-v0.14.0...moq-relay-v0.14.1) - 2026-07-23 + +### Added + +- *(native)* capture qlog traces on the quinn, quiche, and noq backends ([#2451](https://github.com/moq-dev/moq/pull/2451)) + +### Other + +- *(rust)* pin the toolchain and correct the MSRV claims ([#2462](https://github.com/moq-dev/moq/pull/2462)) + ## [0.14.0](https://github.com/moq-dev/moq/compare/moq-relay-v0.13.7...moq-relay-v0.14.0) - 2026-07-22 ### Added diff --git a/rs/moq-relay/Cargo.toml b/rs/moq-relay/Cargo.toml index 785fd8b541..6eccf692df 100644 --- a/rs/moq-relay/Cargo.toml +++ b/rs/moq-relay/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Luke Curley"] repository = "https://github.com/moq-dev/moq" license = "MIT OR Apache-2.0" -version = "0.14.0" +version = "0.14.1" edition = "2024" # sysinfo 0.39 (cache governor cgroup limits) needs 1.95, above the 1.91 # workspace floor. moq-relay is lib+bin, so this applies to its library target diff --git a/rs/moq-stats/CHANGELOG.md b/rs/moq-stats/CHANGELOG.md index 48b94743ba..dd7b682e18 100644 --- a/rs/moq-stats/CHANGELOG.md +++ b/rs/moq-stats/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.1](https://github.com/moq-dev/moq/compare/moq-stats-v0.1.0...moq-stats-v0.1.1) - 2026-07-23 + +### Other + +- updated the following local packages: moq-json + ## [0.1.0](https://github.com/moq-dev/moq/releases/tag/moq-stats-v0.1.0) - 2026-07-22 ### Added diff --git a/rs/moq-stats/Cargo.toml b/rs/moq-stats/Cargo.toml index d9f5d96880..3b4b9a9bb6 100644 --- a/rs/moq-stats/Cargo.toml +++ b/rs/moq-stats/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Luke Curley "] repository = "https://github.com/moq-dev/moq" license = "MIT OR Apache-2.0" -version = "0.1.0" +version = "0.1.1" edition = "2024" rust-version.workspace = true diff --git a/rs/moq-transcode/CHANGELOG.md b/rs/moq-transcode/CHANGELOG.md index 5df31c552e..2aaa7b6843 100644 --- a/rs/moq-transcode/CHANGELOG.md +++ b/rs/moq-transcode/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.2](https://github.com/moq-dev/moq/compare/moq-transcode-v0.0.1...moq-transcode-v0.0.2) - 2026-07-23 + +### Other + +- updated the following local packages: moq-video + ## [0.0.1](https://github.com/moq-dev/moq/releases/tag/moq-transcode-v0.0.1) - 2026-07-22 ### Added diff --git a/rs/moq-transcode/Cargo.toml b/rs/moq-transcode/Cargo.toml index 3981e156ff..908c1d5b35 100644 --- a/rs/moq-transcode/Cargo.toml +++ b/rs/moq-transcode/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Luke Curley "] repository = "https://github.com/moq-dev/moq" license = "MIT OR Apache-2.0" -version = "0.0.1" +version = "0.0.2" edition = "2024" rust-version.workspace = true diff --git a/rs/moq-video/CHANGELOG.md b/rs/moq-video/CHANGELOG.md index a0962e3482..d5e566ad44 100644 --- a/rs/moq-video/CHANGELOG.md +++ b/rs/moq-video/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.8](https://github.com/moq-dev/moq/compare/moq-video-v0.0.7...moq-video-v0.0.8) - 2026-07-23 + +### Other + +- *(rust)* pin the toolchain and correct the MSRV claims ([#2462](https://github.com/moq-dev/moq/pull/2462)) + ## [0.0.7](https://github.com/moq-dev/moq/compare/moq-video-v0.0.6...moq-video-v0.0.7) - 2026-07-22 ### Added diff --git a/rs/moq-video/Cargo.toml b/rs/moq-video/Cargo.toml index cce4973d7a..a3904127b7 100644 --- a/rs/moq-video/Cargo.toml +++ b/rs/moq-video/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Luke Curley "] repository = "https://github.com/moq-dev/moq" license = "MIT OR Apache-2.0" -version = "0.0.7" +version = "0.0.8" edition = "2024" rust-version.workspace = true