diff --git a/Cargo.lock b/Cargo.lock index 5ff24e4f6..c5698fdd1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2942,7 +2942,7 @@ dependencies = [ [[package]] name = "imgproc" -version = "0.3.17" +version = "0.3.18" dependencies = [ "yuv-sys", ] @@ -3325,7 +3325,7 @@ checksum = "11d3d7f243d5c5a8b9bb5d6dd2b1602c0cb0b9db1621bafc7ed66e35ff9fe092" [[package]] name = "livekit" -version = "0.7.30" +version = "0.7.31" dependencies = [ "anyhow", "bmrng", @@ -3381,7 +3381,7 @@ dependencies = [ [[package]] name = "livekit-ffi" -version = "0.12.46" +version = "0.12.47" dependencies = [ "bytes", "console-subscriber", @@ -8091,7 +8091,7 @@ dependencies = [ [[package]] name = "yuv-sys" -version = "0.3.12" +version = "0.3.13" dependencies = [ "bindgen 0.72.1", "cc", diff --git a/Cargo.toml b/Cargo.toml index 842d408a8..009d4ea62 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -38,17 +38,17 @@ repository = "https://github.com/livekit/rust-sdks" license = "Apache-2.0" [workspace.dependencies] -imgproc = { version = "0.3.17", path = "imgproc" } +imgproc = { version = "0.3.18", path = "imgproc" } libwebrtc = { version = "0.3.25", path = "libwebrtc" } -livekit = { version = "0.7.30", path = "livekit" } +livekit = { version = "0.7.31", path = "livekit" } livekit-api = { version = "0.4.13", path = "livekit-api" } -livekit-ffi = { version = "0.12.46", path = "livekit-ffi" } +livekit-ffi = { version = "0.12.47", path = "livekit-ffi" } livekit-protocol = { version = "0.7.0", path = "livekit-protocol" } livekit-runtime = { version = "0.4.0", path = "livekit-runtime" } soxr-sys = { version = "0.1.2", path = "soxr-sys" } webrtc-sys = { version = "0.3.22", path = "webrtc-sys" } webrtc-sys-build = { version = "0.3.13", path = "webrtc-sys/build" } -yuv-sys = { version = "0.3.12", path = "yuv-sys" } +yuv-sys = { version = "0.3.13", path = "yuv-sys" } anyhow = "1.0" bytes = "1.10" diff --git a/imgproc/CHANGELOG.md b/imgproc/CHANGELOG.md index 852f790bd..6c3eacf17 100644 --- a/imgproc/CHANGELOG.md +++ b/imgproc/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.3.18](https://github.com/livekit/rust-sdks/compare/rust-sdks/imgproc@0.3.17...rust-sdks/imgproc@0.3.18) - 2026-02-10 + +### Other + +- updated the following local packages: yuv-sys + ## [0.3.17](https://github.com/livekit/rust-sdks/compare/rust-sdks/imgproc@0.3.16...rust-sdks/imgproc@0.3.17) - 2026-02-09 ### Other diff --git a/imgproc/Cargo.toml b/imgproc/Cargo.toml index 2c1545fa5..249cce4d1 100644 --- a/imgproc/Cargo.toml +++ b/imgproc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "imgproc" -version = "0.3.17" +version = "0.3.18" edition.workspace = true authors = ["Theo Monnom "] license = "MIT OR Apache-2.0" diff --git a/livekit-ffi/CHANGELOG.md b/livekit-ffi/CHANGELOG.md index 12c736f80..e7b85c9ad 100644 --- a/livekit-ffi/CHANGELOG.md +++ b/livekit-ffi/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.12.47](https://github.com/livekit/rust-sdks/compare/rust-sdks/livekit-ffi@0.12.46...rust-sdks/livekit-ffi@0.12.47) - 2026-02-10 + +### Other + +- update Cargo.toml dependencies +- don't use clamp as the ultimate_kbps can be lower than 300 ([#886](https://github.com/livekit/rust-sdks/pull/886)) +- pre-connect the publisher PC when an RPC handler is registered ([#880](https://github.com/livekit/rust-sdks/pull/880)) + ## [0.12.46](https://github.com/livekit/rust-sdks/compare/rust-sdks/livekit-ffi@0.12.45...rust-sdks/livekit-ffi@0.12.46) - 2026-02-09 ### Other diff --git a/livekit-ffi/Cargo.toml b/livekit-ffi/Cargo.toml index 527c3aa70..1398f46bc 100644 --- a/livekit-ffi/Cargo.toml +++ b/livekit-ffi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "livekit-ffi" -version = "0.12.46" +version = "0.12.47" edition.workspace = true license.workspace = true description = "FFI interface for bindings in other languages" diff --git a/livekit/CHANGELOG.md b/livekit/CHANGELOG.md index 064e20809..3c1be0f0f 100644 --- a/livekit/CHANGELOG.md +++ b/livekit/CHANGELOG.md @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.7.31](https://github.com/livekit/rust-sdks/compare/rust-sdks/livekit@0.7.30...rust-sdks/livekit@0.7.31) - 2026-02-10 + +### Other + +- don't use clamp as the ultimate_kbps can be lower than 300 ([#886](https://github.com/livekit/rust-sdks/pull/886)) +- pre-connect the publisher PC when an RPC handler is registered ([#880](https://github.com/livekit/rust-sdks/pull/880)) + ## [0.7.30](https://github.com/livekit/rust-sdks/compare/rust-sdks/livekit@0.7.29...rust-sdks/livekit@0.7.30) - 2026-02-09 ### Fixed diff --git a/livekit/Cargo.toml b/livekit/Cargo.toml index 20f66dd99..f77c6f142 100644 --- a/livekit/Cargo.toml +++ b/livekit/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "livekit" -version = "0.7.30" +version = "0.7.31" edition.workspace = true license.workspace = true description = "Rust Client SDK for LiveKit" diff --git a/yuv-sys/CHANGELOG.md b/yuv-sys/CHANGELOG.md index 9ac5ce6b3..e35d2ac7d 100644 --- a/yuv-sys/CHANGELOG.md +++ b/yuv-sys/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.3.13](https://github.com/livekit/rust-sdks/compare/rust-sdks/yuv-sys@0.3.12...rust-sdks/yuv-sys@0.3.13) - 2026-02-10 + +### Other + +- update libyuv & support neon simd ([#882](https://github.com/livekit/rust-sdks/pull/882)) + ## [0.3.12](https://github.com/livekit/rust-sdks/compare/rust-sdks/yuv-sys@0.3.11...rust-sdks/yuv-sys@0.3.12) - 2026-02-09 ### Other diff --git a/yuv-sys/Cargo.toml b/yuv-sys/Cargo.toml index d4326c0ce..7397e15e5 100644 --- a/yuv-sys/Cargo.toml +++ b/yuv-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "yuv-sys" -version = "0.3.12" +version = "0.3.13" edition.workspace = true authors = ["Theo Monnom "] license = "MIT OR Apache-2.0"