Skip to content

Commit 29c0326

Browse files
chore: release
1 parent 2a02750 commit 29c0326

File tree

24 files changed

+111
-32
lines changed

24 files changed

+111
-32
lines changed

Cargo.lock

Lines changed: 10 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,14 @@ members = [
2929
]
3030

3131
[workspace.dependencies]
32-
imgproc = { version = "0.3.14", path = "imgproc" }
33-
libwebrtc = { version = "0.3.17", path = "libwebrtc" }
34-
livekit = { version = "0.7.21", path = "livekit" }
35-
livekit-api = { version = "0.4.8", path = "livekit-api" }
36-
livekit-ffi = { version = "0.12.36", path = "livekit-ffi" }
37-
livekit-protocol = { version = "0.5.0", path = "livekit-protocol" }
32+
imgproc = { version = "0.3.15", path = "imgproc" }
33+
libwebrtc = { version = "0.3.18", path = "libwebrtc" }
34+
livekit = { version = "0.7.22", path = "livekit" }
35+
livekit-api = { version = "0.4.9", path = "livekit-api" }
36+
livekit-ffi = { version = "0.12.37", path = "livekit-ffi" }
37+
livekit-protocol = { version = "0.5.1", path = "livekit-protocol" }
3838
livekit-runtime = { version = "0.4.0", path = "livekit-runtime" }
39-
soxr-sys = { version = "0.1.0", path = "soxr-sys" }
40-
webrtc-sys = { version = "0.3.14", path = "webrtc-sys" }
41-
webrtc-sys-build = { version = "0.3.9", path = "webrtc-sys/build" }
42-
yuv-sys = { version = "0.3.9", path = "yuv-sys" }
39+
soxr-sys = { version = "0.1.1", path = "soxr-sys" }
40+
webrtc-sys = { version = "0.3.15", path = "webrtc-sys" }
41+
webrtc-sys-build = { version = "0.3.10", path = "webrtc-sys/build" }
42+
yuv-sys = { version = "0.3.10", path = "yuv-sys" }

examples/api/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ publish = false
77
[dependencies]
88
tokio = { version = "1", features = ["full", "parking_lot"] }
99
livekit-api = { workspace = true, features = ["rustls-tls-native-roots"] }
10-
futures = "0.3"
10+
futures = "0.3"

examples/webhooks/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ publish = false
77
[dependencies]
88
livekit-api = { workspace = true, features = ["rustls-tls-native-roots"] }
99
hyper = { version = "0.14", features = ["full"] }
10-
tokio = { version = "1", features = ["full"] }
10+
tokio = { version = "1", features = ["full"] }

imgproc/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.3.15](https://github.com/livekit/rust-sdks/compare/rust-sdks/[email protected]/[email protected]) - 2025-10-22
11+
12+
### Other
13+
14+
- License check ([#746](https://github.com/livekit/rust-sdks/pull/746))
15+
1016
## [0.3.14](https://github.com/livekit/rust-sdks/compare/rust-sdks/[email protected]/[email protected]) - 2025-09-29
1117

1218
### Other

imgproc/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "imgproc"
3-
version = "0.3.14"
3+
version = "0.3.15"
44
edition = "2021"
55
authors = ["Theo Monnom <[email protected]>"]
66
license = "MIT OR Apache-2.0"

libwebrtc/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.3.18](https://github.com/livekit/rust-sdks/compare/rust-sdks/[email protected]/[email protected]) - 2025-10-22
11+
12+
### Other
13+
14+
- License check ([#746](https://github.com/livekit/rust-sdks/pull/746))
15+
1016
## [0.3.17](https://github.com/livekit/rust-sdks/compare/rust-sdks/[email protected]/[email protected]) - 2025-10-13
1117

1218
### Added

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.17"
3+
version = "0.3.18"
44
edition = "2021"
55
homepage = "https://livekit.io"
66
license = "Apache-2.0"

livekit-api/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.4.9](https://github.com/livekit/rust-sdks/compare/rust-sdks/[email protected]/[email protected]) - 2025-10-22
11+
12+
### Other
13+
14+
- License check ([#746](https://github.com/livekit/rust-sdks/pull/746))
15+
- Agent dispatch APIs ([#742](https://github.com/livekit/rust-sdks/pull/742))
16+
- Access token via auth header ([#728](https://github.com/livekit/rust-sdks/pull/728))
17+
1018
## [0.4.8](https://github.com/livekit/rust-sdks/compare/rust-sdks/[email protected]/[email protected]) - 2025-10-13
1119

1220
### 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.8"
3+
version = "0.4.9"
44
license = "Apache-2.0"
55
description = "Rust Server SDK for LiveKit"
66
edition = "2021"

0 commit comments

Comments
 (0)