Skip to content

Commit 89579d5

Browse files
chore: release (#702)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 289b036 commit 89579d5

File tree

14 files changed

+82
-41
lines changed

14 files changed

+82
-41
lines changed

Cargo.lock

Lines changed: 14 additions & 28 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
@@ -15,14 +15,14 @@ members = [
1515
]
1616

1717
[workspace.dependencies]
18-
imgproc = { version = "0.3.12", path = "imgproc" }
19-
yuv-sys = { version = "0.3.7", path = "yuv-sys" }
20-
libwebrtc = { version = "0.3.13", path = "libwebrtc" }
18+
imgproc = { version = "0.3.13", path = "imgproc" }
19+
yuv-sys = { version = "0.3.8", path = "yuv-sys" }
20+
libwebrtc = { version = "0.3.14", path = "libwebrtc" }
2121
livekit-api = { version = "0.4.6", path = "livekit-api" }
22-
livekit-ffi = { version = "0.12.32", path = "livekit-ffi" }
22+
livekit-ffi = { version = "0.12.33", path = "livekit-ffi" }
2323
livekit-protocol = { version = "0.4.0", path = "livekit-protocol" }
2424
livekit-runtime = { version = "0.4.0", path = "livekit-runtime" }
25-
livekit = { version = "0.7.17", path = "livekit" }
25+
livekit = { version = "0.7.18", path = "livekit" }
2626
soxr-sys = { version = "0.1.0", path = "soxr-sys" }
2727
webrtc-sys-build = { version = "0.3.7", path = "webrtc-sys/build" }
28-
webrtc-sys = { version = "0.3.10", path = "webrtc-sys" }
28+
webrtc-sys = { version = "0.3.11", path = "webrtc-sys" }

imgproc/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# Changelog
22

3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [Unreleased]
9+
10+
## [0.3.13](https://github.com/livekit/rust-sdks/compare/rust-sdks/imgproc@0.3.12...rust-sdks/imgproc@0.3.13) - 2025-09-09
11+
12+
### Other
13+
14+
- updated the following local packages: yuv-sys
15+
# Changelog
16+
317
## [0.3.12] - 2024-12-14
418

519
### Added

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.12"
3+
version = "0.3.13"
44
edition = "2021"
55
authors = ["Theo Monnom <theo.8bits@gmail.com>"]
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.14](https://github.com/livekit/rust-sdks/compare/rust-sdks/libwebrtc@0.3.13...rust-sdks/libwebrtc@0.3.14) - 2025-09-09
11+
12+
### Other
13+
14+
- updated the following local packages: webrtc-sys
15+
1016
## [0.3.13](https://github.com/livekit/rust-sdks/compare/rust-sdks/libwebrtc@0.3.12...rust-sdks/libwebrtc@0.3.13) - 2025-09-03
1117

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

livekit-ffi/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.12.33](https://github.com/livekit/rust-sdks/compare/rust-sdks/livekit-ffi@0.12.32...rust-sdks/livekit-ffi@0.12.33) - 2025-09-09
11+
12+
### Other
13+
14+
- Add option to enable audio preconnect buffer in SDK & FFI ([#700](https://github.com/livekit/rust-sdks/pull/700))
15+
- Optional flags for video hw codec. ([#701](https://github.com/livekit/rust-sdks/pull/701))
16+
- Data channel reliability ([#688](https://github.com/livekit/rust-sdks/pull/688))
17+
1018
## [0.12.32](https://github.com/livekit/rust-sdks/compare/rust-sdks/livekit-ffi@0.12.31...rust-sdks/livekit-ffi@0.12.32) - 2025-09-03
1119

1220
### 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.32"
3+
version = "0.12.33"
44
edition = "2021"
55
license = "Apache-2.0"
66
description = "FFI interface for bindings in other languages"

livekit/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.7.18](https://github.com/livekit/rust-sdks/compare/rust-sdks/livekit@0.7.17...rust-sdks/livekit@0.7.18) - 2025-09-09
11+
12+
### Other
13+
14+
- Add option to enable audio preconnect buffer in SDK & FFI ([#700](https://github.com/livekit/rust-sdks/pull/700))
15+
- Data channel reliability ([#688](https://github.com/livekit/rust-sdks/pull/688))
16+
1017
## [0.7.17](https://github.com/livekit/rust-sdks/compare/rust-sdks/livekit@0.7.16...rust-sdks/livekit@0.7.17) - 2025-09-03
1118

1219
### Other

livekit/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "livekit"
3-
version = "0.7.17"
3+
version = "0.7.18"
44
edition = "2021"
55
license = "Apache-2.0"
66
description = "Rust Client SDK for LiveKit"
@@ -46,4 +46,4 @@ bytes = "1.10.1"
4646
bmrng = "0.5.2"
4747

4848
[dev-dependencies]
49-
anyhow = "1.0.99"
49+
anyhow = "1.0.99"

0 commit comments

Comments
 (0)