Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,13 @@ members = [

[workspace.dependencies]
imgproc = { version = "0.3.15", path = "imgproc" }
libwebrtc = { version = "0.3.21", path = "libwebrtc" }
livekit = { version = "0.7.26", path = "livekit" }
libwebrtc = { version = "0.3.22", path = "libwebrtc" }
livekit = { version = "0.7.27", path = "livekit" }
livekit-api = { version = "0.4.11", path = "livekit-api" }
livekit-ffi = { version = "0.12.41", path = "livekit-ffi" }
livekit-ffi = { version = "0.12.42", path = "livekit-ffi" }
livekit-protocol = { version = "0.6.0", path = "livekit-protocol" }
livekit-runtime = { version = "0.4.0", path = "livekit-runtime" }
soxr-sys = { version = "0.1.1", path = "soxr-sys" }
webrtc-sys = { version = "0.3.18", path = "webrtc-sys" }
webrtc-sys = { version = "0.3.19", path = "webrtc-sys" }
webrtc-sys-build = { version = "0.3.12", path = "webrtc-sys/build" }
yuv-sys = { version = "0.3.10", path = "yuv-sys" }
6 changes: 6 additions & 0 deletions libwebrtc/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.3.22](https://github.com/livekit/rust-sdks/compare/rust-sdks/[email protected]/[email protected]) - 2025-12-17

### Other

- Expose WebRTC's audio_mixer ([#806](https://github.com/livekit/rust-sdks/pull/806))

## [0.3.21](https://github.com/livekit/rust-sdks/compare/rust-sdks/[email protected]/[email protected]) - 2025-12-04

### Other
Expand Down
2 changes: 1 addition & 1 deletion libwebrtc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "libwebrtc"
version = "0.3.21"
version = "0.3.22"
edition = "2021"
homepage = "https://livekit.io"
license = "Apache-2.0"
Expand Down
6 changes: 6 additions & 0 deletions livekit-ffi/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.12.42](https://github.com/livekit/rust-sdks/compare/rust-sdks/[email protected]/[email protected]) - 2025-12-17

### Other

- Handle server initiated mute request ([#812](https://github.com/livekit/rust-sdks/pull/812))

## [0.12.41](https://github.com/livekit/rust-sdks/compare/rust-sdks/[email protected]/[email protected]) - 2025-12-04

### Added
Expand Down
2 changes: 1 addition & 1 deletion livekit-ffi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "livekit-ffi"
version = "0.12.41"
version = "0.12.42"
edition = "2021"
license = "Apache-2.0"
description = "FFI interface for bindings in other languages"
Expand Down
6 changes: 6 additions & 0 deletions livekit/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.7.27](https://github.com/livekit/rust-sdks/compare/rust-sdks/[email protected]/[email protected]) - 2025-12-17

### Other

- Handle server initiated mute request ([#812](https://github.com/livekit/rust-sdks/pull/812))

## [0.7.26](https://github.com/livekit/rust-sdks/compare/rust-sdks/[email protected]/[email protected]) - 2025-12-04

### Added
Expand Down
2 changes: 1 addition & 1 deletion livekit/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "livekit"
version = "0.7.26"
version = "0.7.27"
edition = "2021"
license = "Apache-2.0"
description = "Rust Client SDK for LiveKit"
Expand Down
10 changes: 10 additions & 0 deletions webrtc-sys/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.3.19](https://github.com/livekit/rust-sdks/compare/rust-sdks/[email protected]/[email protected]) - 2025-12-17

### Fixed

- lazy loading for additional dependencies. ([#814](https://github.com/livekit/rust-sdks/pull/814))

### Other

- Expose WebRTC's audio_mixer ([#806](https://github.com/livekit/rust-sdks/pull/806))

## [0.3.18](https://github.com/livekit/rust-sdks/compare/rust-sdks/[email protected]/[email protected]) - 2025-12-04

### Other
Expand Down
2 changes: 1 addition & 1 deletion webrtc-sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "webrtc-sys"
version = "0.3.18"
version = "0.3.19"
edition = "2021"
homepage = "https://livekit.io"
license = "Apache-2.0"
Expand Down