Skip to content

Commit fca27e1

Browse files
committed
str0m 0.21.0 and bump all other crates
1 parent 823ffe0 commit fca27e1

9 files changed

Lines changed: 25 additions & 24 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Unreleased
22

3+
# 0.21.0
4+
35
* Upgrade to dimpl 0.7.0 (breaking)
46
* Handle SctpAssociation as Event::Closed #986
57
* Reject SDP payload types > 127 instead of panicking when claiming PTs #983

Cargo.lock

Lines changed: 7 additions & 7 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
@@ -1,6 +1,6 @@
11
[package]
22
name = "str0m"
3-
version = "0.20.0"
3+
version = "0.21.0"
44
authors = ["Martin Algesten <martin@algesten.se>", "Hugo Tunius <h@tunius.se>", "Davide Bertola <dade@dadeb.it>"]
55
description = "WebRTC library in Sans-IO style"
66
license = "MIT OR Apache-2.0"
@@ -33,21 +33,21 @@ members = [
3333
"crypto/rust-crypto",
3434
"crypto/openssl",
3535
"crypto/apple-crypto",
36-
"crypto/wincrypto",
36+
"crypto/wincrypto"
3737
]
3838
exclude = ["crates/fuzz"]
3939

4040
[workspace.dependencies]
4141
# Internal crates
42-
str0m = { version = "0.20.0", path = ".", default-features = false }
42+
str0m = { version = "0.21.0", path = ".", default-features = false }
4343
str0m-proto = { version = "0.6.0", path = "crates/proto", default-features = false }
4444
is = { version = "0.10.0", path = "crates/is", default-features = false }
45-
str0m-netem = { version = "0.2.0", path = "crates/netem" }
46-
str0m-aws-lc-rs = { version = "0.4.1", path = "crypto/aws-lc-rs" }
47-
str0m-rust-crypto = { version = "0.4.1", path = "crypto/rust-crypto" }
48-
str0m-openssl = { version = "0.4.1", path = "crypto/openssl" }
49-
str0m-apple-crypto = { version = "0.4.1", path = "crypto/apple-crypto" }
50-
str0m-wincrypto = { version = "0.6.1", path = "crypto/wincrypto" }
45+
str0m-netem = { version = "0.3.0", path = "crates/netem" }
46+
str0m-aws-lc-rs = { version = "0.5.0", path = "crypto/aws-lc-rs" }
47+
str0m-rust-crypto = { version = "0.5.0", path = "crypto/rust-crypto" }
48+
str0m-openssl = { version = "0.5.0", path = "crypto/openssl" }
49+
str0m-apple-crypto = { version = "0.5.0", path = "crypto/apple-crypto" }
50+
str0m-wincrypto = { version = "0.7.0", path = "crypto/wincrypto" }
5151
_str0m_test = { path = "crates/_str0m_test" }
5252

5353
# Core dependencies
@@ -170,7 +170,7 @@ regex.workspace = true
170170
rand.workspace = true
171171

172172
# Package rename not supported with workspace inheritance
173-
netem = { package = "str0m-netem", version = "0.2.0", path = "crates/netem" }
173+
netem = { package = "str0m-netem", version = "0.3.0", path = "crates/netem" }
174174

175175
# dummy package that enables "_internal_test_exports"
176176
_str0m_test = { path = "crates/_str0m_test" }

crates/netem/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "str0m-netem"
3-
version = "0.2.0"
3+
version = "0.3.0"
44
authors = ["Martin Algesten <martin@algesten.se>"]
55
description = "Sans-IO network emulation for testing str0m under simulated network conditions"
66
license = "MIT OR Apache-2.0"

crypto/apple-crypto/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "str0m-apple-crypto"
3-
version = "0.4.1"
3+
version = "0.5.0"
44
description = "Apple CommonCrypto/Security framework backend for str0m WebRTC"
55
edition = "2024"
66
license = "MIT OR Apache-2.0"

crypto/aws-lc-rs/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "str0m-aws-lc-rs"
3-
version = "0.4.1"
3+
version = "0.5.0"
44
authors = ["Martin Algesten <martin@algesten.se>"]
55
description = "aws-lc-rs backend for str0m WebRTC"
66
license = "MIT OR Apache-2.0"

crypto/openssl/Cargo.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "str0m-openssl"
3-
version = "0.4.1"
3+
version = "0.5.0"
44
authors = ["Martin Algesten <martin@algesten.se>"]
55
description = "OpenSSL backend for str0m WebRTC"
66
license = "MIT OR Apache-2.0"
@@ -26,4 +26,3 @@ dimpl = { workspace = true, optional = true }
2626

2727
[dev-dependencies]
2828
arrayvec = "0.7"
29-

crypto/rust-crypto/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "str0m-rust-crypto"
3-
version = "0.4.1"
3+
version = "0.5.0"
44
authors = ["Martin Algesten <martin@algesten.se>"]
55
description = "Pure Rust crypto backend for str0m WebRTC"
66
license = "MIT OR Apache-2.0"

crypto/wincrypto/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "str0m-wincrypto"
3-
version = "0.6.1"
3+
version = "0.7.0"
44
description = "Supporting crate for str0m"
55
license = "MIT OR Apache-2.0"
66
repository = "https://github.com/algesten/str0m"

0 commit comments

Comments
 (0)