Skip to content

Commit e4b8510

Browse files
chore: release (#726)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 91dec23 commit e4b8510

File tree

14 files changed

+95
-18
lines changed

14 files changed

+95
-18
lines changed

Cargo.lock

Lines changed: 6 additions & 6 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
@@ -17,12 +17,12 @@ members = [
1717
[workspace.dependencies]
1818
imgproc = { version = "0.3.14", path = "imgproc" }
1919
yuv-sys = { version = "0.3.9", path = "yuv-sys" }
20-
libwebrtc = { version = "0.3.16", path = "libwebrtc" }
21-
livekit-api = { version = "0.4.7", path = "livekit-api" }
22-
livekit-ffi = { version = "0.12.35", path = "livekit-ffi" }
20+
libwebrtc = { version = "0.3.17", path = "libwebrtc" }
21+
livekit-api = { version = "0.4.8", path = "livekit-api" }
22+
livekit-ffi = { version = "0.12.36", path = "livekit-ffi" }
2323
livekit-protocol = { version = "0.5.0", path = "livekit-protocol" }
2424
livekit-runtime = { version = "0.4.0", path = "livekit-runtime" }
25-
livekit = { version = "0.7.20", path = "livekit" }
25+
livekit = { version = "0.7.21", path = "livekit" }
2626
soxr-sys = { version = "0.1.0", path = "soxr-sys" }
27-
webrtc-sys-build = { version = "0.3.8", path = "webrtc-sys/build" }
28-
webrtc-sys = { version = "0.3.13", path = "webrtc-sys" }
27+
webrtc-sys-build = { version = "0.3.9", path = "webrtc-sys/build" }
28+
webrtc-sys = { version = "0.3.14", path = "webrtc-sys" }

libwebrtc/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.3.17](https://github.com/livekit/rust-sdks/compare/rust-sdks/[email protected]/[email protected]) - 2025-10-13
11+
12+
### Added
13+
14+
- *(e2ee)* add data channel encryption ([#708](https://github.com/livekit/rust-sdks/pull/708))
15+
16+
### Other
17+
18+
- Enable buffer scaling ([#473](https://github.com/livekit/rust-sdks/pull/473))
19+
1020
## [0.3.16](https://github.com/livekit/rust-sdks/compare/rust-sdks/[email protected]/[email protected]) - 2025-10-03
1121

1222
### Other

libwebrtc/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "libwebrtc"
3-
version = "0.3.16"
3+
version = "0.3.17"
44
edition = "2021"
55
homepage = "https://livekit.io"
66
license = "Apache-2.0"

livekit-api/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.4.8](https://github.com/livekit/rust-sdks/compare/rust-sdks/[email protected]/[email protected]) - 2025-10-13
11+
12+
### Other
13+
14+
- Bump reqwest to 0.12 ([#711](https://github.com/livekit/rust-sdks/pull/711))
15+
1016
## [0.4.7](https://github.com/livekit/rust-sdks/compare/rust-sdks/[email protected]/[email protected]) - 2025-09-29
1117

1218
### Other

livekit-api/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "livekit-api"
3-
version = "0.4.7"
3+
version = "0.4.8"
44
license = "Apache-2.0"
55
description = "Rust Server SDK for LiveKit"
66
edition = "2021"

livekit-ffi/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.12.36](https://github.com/livekit/rust-sdks/compare/rust-sdks/[email protected]/[email protected]) - 2025-10-13
11+
12+
### Added
13+
14+
- *(e2ee)* add data channel encryption ([#708](https://github.com/livekit/rust-sdks/pull/708))
15+
16+
### Fixed
17+
18+
- fix some potential audio issues, clean up the code a bit, and suppress some warnings ([#737](https://github.com/livekit/rust-sdks/pull/737))
19+
- do not log 'signal client closed: "stream closed"' on disconnect ([#727](https://github.com/livekit/rust-sdks/pull/727))
20+
21+
### Other
22+
23+
- Upgrade prost, use prost-build (FFI only) ([#734](https://github.com/livekit/rust-sdks/pull/734))
24+
- Test participant disconnect ([#732](https://github.com/livekit/rust-sdks/pull/732))
25+
- Increase RPC max RT time to 7s ([#729](https://github.com/livekit/rust-sdks/pull/729))
26+
- E2E audio test ([#724](https://github.com/livekit/rust-sdks/pull/724))
27+
- bump libwebrtc libs version for webrtc-sys. ([#741](https://github.com/livekit/rust-sdks/pull/741))
28+
- Bump reqwest to 0.12 ([#711](https://github.com/livekit/rust-sdks/pull/711))
29+
1030
## [0.12.35](https://github.com/livekit/rust-sdks/compare/rust-sdks/[email protected]/[email protected]) - 2025-10-03
1131

1232
### Other

livekit-ffi/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "livekit-ffi"
3-
version = "0.12.35"
3+
version = "0.12.36"
44
edition = "2021"
55
license = "Apache-2.0"
66
description = "FFI interface for bindings in other languages"

livekit/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.7.21](https://github.com/livekit/rust-sdks/compare/rust-sdks/[email protected]/[email protected]) - 2025-10-13
11+
12+
### Added
13+
14+
- *(e2ee)* add data channel encryption ([#708](https://github.com/livekit/rust-sdks/pull/708))
15+
16+
### Fixed
17+
18+
- fix some potential audio issues, clean up the code a bit, and suppress some warnings ([#737](https://github.com/livekit/rust-sdks/pull/737))
19+
- do not log 'signal client closed: "stream closed"' on disconnect ([#727](https://github.com/livekit/rust-sdks/pull/727))
20+
21+
### Other
22+
23+
- Test participant disconnect ([#732](https://github.com/livekit/rust-sdks/pull/732))
24+
- Increase RPC max RT time to 7s ([#729](https://github.com/livekit/rust-sdks/pull/729))
25+
- E2E audio test ([#724](https://github.com/livekit/rust-sdks/pull/724))
26+
1027
## [0.7.20](https://github.com/livekit/rust-sdks/compare/rust-sdks/[email protected]/[email protected]) - 2025-10-03
1128

1229
### Other

livekit/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "livekit"
3-
version = "0.7.20"
3+
version = "0.7.21"
44
edition = "2021"
55
license = "Apache-2.0"
66
description = "Rust Client SDK for LiveKit"

0 commit comments

Comments
 (0)