Skip to content

Commit

Permalink
Rust versions bump
Browse files Browse the repository at this point in the history
  • Loading branch information
ibc committed Feb 5, 2024
1 parent 2fe0e69 commit e8a09a0
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
7 changes: 7 additions & 0 deletions rust/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

# 0.16.0

* Updates from mediasoup TypeScript `3.13.13..=3.13.17`.
* General mediasoup changes:
* `TransportListenInfo.announced_ip` can also be a hostname (PR #1322).
* `TransportListenInfo.announced_ip` is now `announced_address`, `IceCandidate.ip` is now `IceCandidate.address` and `TransportTuple.local_ip` is not `TransportTuple.local_address` (PR #1323).

# 0.15.0

* Expose DataChannel string message as binary (PR #1289).
Expand Down
4 changes: 2 additions & 2 deletions rust/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mediasoup"
version = "0.15.0"
version = "0.16.0"
description = "Cutting Edge WebRTC Video Conferencing in Rust"
categories = ["api-bindings", "multimedia", "network-programming"]
authors = ["Nazar Mokrynskyi <[email protected]>"]
Expand Down Expand Up @@ -46,7 +46,7 @@ version = "0.8.1"

[dependencies.mediasoup-sys]
path = "../worker"
version = "0.7.2"
version = "0.7.3"

[dependencies.parking_lot]
version = "0.12.1"
Expand Down
2 changes: 1 addition & 1 deletion rust/src/data_structures.rs
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ impl ListenInfo {
ip: self.ip.to_string(),
announced_address: self
.announced_address
.clone()
.as_ref()
.map(|address| address.to_string()),
port: self.port.unwrap_or(0),
flags: Box::new(self.flags.unwrap_or_default().to_fbs()),
Expand Down
2 changes: 1 addition & 1 deletion worker/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mediasoup-sys"
version = "0.7.2"
version = "0.7.3"
description = "FFI bindings to C++ libmediasoup-worker"
authors = ["Nazar Mokrynskyi <[email protected]>"]
edition = "2021"
Expand Down

0 comments on commit e8a09a0

Please sign in to comment.