diff --git a/Cargo.lock b/Cargo.lock index bb87c26f3..35c4face7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2969,7 +2969,7 @@ checksum = "f5e54036fe321fd421e10d732f155734c4e4afd610dd556d9a82833ab3ee0bed" [[package]] name = "livekit" -version = "0.7.21" +version = "0.7.22" dependencies = [ "anyhow", "bmrng", @@ -2995,7 +2995,7 @@ dependencies = [ [[package]] name = "livekit-api" -version = "0.4.8" +version = "0.4.9" dependencies = [ "async-tungstenite", "base64 0.21.7", @@ -3025,7 +3025,7 @@ dependencies = [ [[package]] name = "livekit-ffi" -version = "0.12.36" +version = "0.12.37" dependencies = [ "bytes", "console-subscriber", @@ -6162,7 +6162,7 @@ dependencies = [ [[package]] name = "webrtc-sys" -version = "0.3.14" +version = "0.3.15" dependencies = [ "cc", "cxx", @@ -7108,7 +7108,7 @@ dependencies = [ [[package]] name = "yuv-sys" -version = "0.3.9" +version = "0.3.10" dependencies = [ "bindgen", "cc", diff --git a/examples/api/Cargo.toml b/examples/api/Cargo.toml index fa071d369..1362ed73a 100644 --- a/examples/api/Cargo.toml +++ b/examples/api/Cargo.toml @@ -6,4 +6,4 @@ edition = "2021" [dependencies] tokio = { version = "1", features = ["full", "parking_lot"] } livekit-api = { workspace = true, features = ["rustls-tls-native-roots"] } -futures = "0.3" \ No newline at end of file +futures = "0.3" diff --git a/examples/webhooks/Cargo.toml b/examples/webhooks/Cargo.toml index e2ec09296..bde26dbeb 100644 --- a/examples/webhooks/Cargo.toml +++ b/examples/webhooks/Cargo.toml @@ -7,4 +7,4 @@ publish = false [dependencies] livekit-api = { workspace = true, features = ["rustls-tls-native-roots"] } hyper = { version = "0.14", features = ["full"] } -tokio = { version = "1", features = ["full"] } \ No newline at end of file +tokio = { version = "1", features = ["full"] } diff --git a/livekit-api/CHANGELOG.md b/livekit-api/CHANGELOG.md index 86be7c1cc..47dfcf0ab 100644 --- a/livekit-api/CHANGELOG.md +++ b/livekit-api/CHANGELOG.md @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.4.9](https://github.com/livekit/rust-sdks/compare/rust-sdks/livekit-api@0.4.8...rust-sdks/livekit-api@0.4.9) - 2025-10-19 + +### Other + +- Agent dispatch APIs ([#742](https://github.com/livekit/rust-sdks/pull/742)) +- Access token via auth header ([#728](https://github.com/livekit/rust-sdks/pull/728)) + ## [0.4.8](https://github.com/livekit/rust-sdks/compare/rust-sdks/livekit-api@0.4.7...rust-sdks/livekit-api@0.4.8) - 2025-10-13 ### Other diff --git a/livekit-api/Cargo.toml b/livekit-api/Cargo.toml index 66f19e824..95703b2a8 100644 --- a/livekit-api/Cargo.toml +++ b/livekit-api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "livekit-api" -version = "0.4.8" +version = "0.4.9" license = "Apache-2.0" description = "Rust Server SDK for LiveKit" edition = "2021" diff --git a/livekit-ffi/CHANGELOG.md b/livekit-ffi/CHANGELOG.md index 8830f8ab7..65251f44f 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.37](https://github.com/livekit/rust-sdks/compare/rust-sdks/livekit-ffi@0.12.36...rust-sdks/livekit-ffi@0.12.37) - 2025-10-19 + +### Other + +- Derive from_variants for FFI oneof fields ([#738](https://github.com/livekit/rust-sdks/pull/738)) +- clamp connection timeout and fixed the comment ([#748](https://github.com/livekit/rust-sdks/pull/748)) +- put examples in root Cargo workspace ([#731](https://github.com/livekit/rust-sdks/pull/731)) + ## [0.12.36](https://github.com/livekit/rust-sdks/compare/rust-sdks/livekit-ffi@0.12.35...rust-sdks/livekit-ffi@0.12.36) - 2025-10-13 ### Added diff --git a/livekit-ffi/Cargo.toml b/livekit-ffi/Cargo.toml index 709983596..2f18f0c59 100644 --- a/livekit-ffi/Cargo.toml +++ b/livekit-ffi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "livekit-ffi" -version = "0.12.36" +version = "0.12.37" edition = "2021" license = "Apache-2.0" description = "FFI interface for bindings in other languages" diff --git a/livekit/CHANGELOG.md b/livekit/CHANGELOG.md index 959c8da6e..2acf36fbd 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.22](https://github.com/livekit/rust-sdks/compare/rust-sdks/livekit@0.7.21...rust-sdks/livekit@0.7.22) - 2025-10-19 + +### Other + +- clamp connection timeout and fixed the comment ([#748](https://github.com/livekit/rust-sdks/pull/748)) +- put examples in root Cargo workspace ([#731](https://github.com/livekit/rust-sdks/pull/731)) + ## [0.7.21](https://github.com/livekit/rust-sdks/compare/rust-sdks/livekit@0.7.20...rust-sdks/livekit@0.7.21) - 2025-10-13 ### Added diff --git a/livekit/Cargo.toml b/livekit/Cargo.toml index e41c726f7..30e0eeafc 100644 --- a/livekit/Cargo.toml +++ b/livekit/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "livekit" -version = "0.7.21" +version = "0.7.22" edition = "2021" license = "Apache-2.0" description = "Rust Client SDK for LiveKit" diff --git a/webrtc-sys/CHANGELOG.md b/webrtc-sys/CHANGELOG.md index 9c01b646f..a4be43db5 100644 --- a/webrtc-sys/CHANGELOG.md +++ b/webrtc-sys/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.3.15](https://github.com/livekit/rust-sdks/compare/rust-sdks/webrtc-sys@0.3.14...rust-sdks/webrtc-sys@0.3.15) - 2025-10-19 + +### Other + +- put examples in root Cargo workspace ([#731](https://github.com/livekit/rust-sdks/pull/731)) + ## [0.3.14](https://github.com/livekit/rust-sdks/compare/rust-sdks/webrtc-sys@0.3.13...rust-sdks/webrtc-sys@0.3.14) - 2025-10-13 ### Added diff --git a/webrtc-sys/Cargo.toml b/webrtc-sys/Cargo.toml index f34c155ab..c095e8796 100644 --- a/webrtc-sys/Cargo.toml +++ b/webrtc-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "webrtc-sys" -version = "0.3.14" +version = "0.3.15" edition = "2021" homepage = "https://livekit.io" license = "Apache-2.0" diff --git a/yuv-sys/CHANGELOG.md b/yuv-sys/CHANGELOG.md index a58694c08..bd93d7296 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.10](https://github.com/livekit/rust-sdks/compare/rust-sdks/yuv-sys@0.3.9...rust-sdks/yuv-sys@0.3.10) - 2025-10-19 + +### Other + +- Cargo workspace cleanup ([#745](https://github.com/livekit/rust-sdks/pull/745)) + ## [0.3.9](https://github.com/livekit/rust-sdks/compare/rust-sdks/yuv-sys@0.3.8...rust-sdks/yuv-sys@0.3.9) - 2025-09-29 ### Other diff --git a/yuv-sys/Cargo.toml b/yuv-sys/Cargo.toml index e99043b51..47fdaab61 100644 --- a/yuv-sys/Cargo.toml +++ b/yuv-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "yuv-sys" -version = "0.3.9" +version = "0.3.10" edition = "2021" authors = ["Theo Monnom "] license = "MIT OR Apache-2.0"