Skip to content

Commit 1272c14

Browse files
committed
0.18.0
1 parent 7ef05d1 commit 1272c14

9 files changed

Lines changed: 23 additions & 21 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.18.0
4+
35
* Disable server cookie for all dimpl crypto impl #923
46
* Implement SNAP and sctp-init #811
57
* Implement wincrypto-dimpl feature #920

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: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "str0m"
3-
version = "0.17.0"
3+
version = "0.18.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"
@@ -39,15 +39,15 @@ exclude = ["crates/fuzz"]
3939

4040
[workspace.dependencies]
4141
# Internal crates
42-
str0m = { version = "0.17.0", path = ".", default-features = false }
43-
str0m-proto = { version = "0.3.0", path = "crates/proto", default-features = false }
42+
str0m = { version = "0.18.0", path = ".", default-features = false }
43+
str0m-proto = { version = "0.4.0", path = "crates/proto", default-features = false }
4444
is = { version = "0.7.0", path = "crates/is", default-features = false }
4545
str0m-netem = { version = "0.2.0", path = "crates/netem" }
46-
str0m-aws-lc-rs = { version = "0.2.0", path = "crypto/aws-lc-rs" }
47-
str0m-rust-crypto = { version = "0.2.0", path = "crypto/rust-crypto" }
48-
str0m-openssl = { version = "0.2.0", path = "crypto/openssl" }
49-
str0m-apple-crypto = { version = "0.2.0", path = "crypto/apple-crypto" }
50-
str0m-wincrypto = { version = "0.4.0", path = "crypto/wincrypto" }
46+
str0m-aws-lc-rs = { version = "0.3.0", path = "crypto/aws-lc-rs" }
47+
str0m-rust-crypto = { version = "0.3.0", path = "crypto/rust-crypto" }
48+
str0m-openssl = { version = "0.3.0", path = "crypto/openssl" }
49+
str0m-apple-crypto = { version = "0.3.0", path = "crypto/apple-crypto" }
50+
str0m-wincrypto = { version = "0.5.0", path = "crypto/wincrypto" }
5151
_str0m_test = { version = "0.1.0", path = "crates/_str0m_test" }
5252

5353
# Core dependencies

crates/proto/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-proto"
3-
version = "0.3.0"
3+
version = "0.4.0"
44
authors = ["Martin Algesten <martin@algesten.se>"]
55
description = "Internal crate for str0m. Not intended for direct use."
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.2.0"
3+
version = "0.3.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.2.0"
3+
version = "0.3.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 & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "str0m-openssl"
3-
version = "0.2.0"
3+
version = "0.3.0"
44
authors = ["Martin Algesten <martin@algesten.se>"]
55
description = "OpenSSL backend for str0m WebRTC"
66
license = "MIT OR Apache-2.0"

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.2.0"
3+
version = "0.3.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.4.0"
3+
version = "0.5.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)