Skip to content

Commit c540961

Browse files
Release dtls version 0.7.0
1 parent f919e4e commit c540961

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

dtls/CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,15 @@
22

33
## Unreleased
44

5-
## v0.6.1
5+
## v0.7.0
66

77
* Increased minimum support rust version to `1.60.0`.
88
* Add `RTCCertificate::from_pem` and `RTCCertificate::serialize_pem` (only work with `pem` feature enabled) [#333](https://github.com/webrtc-rs/webrtc/pull/333)
99

10+
### Breaking
11+
12+
* Increased required `webrtc-util` version to `0.7.0`, with this change some methods in `DTLSConn` that implement `webrtc_util::Conn` have changed from async to sync.
13+
1014
## v0.6.0
1115

1216
* [#254 [DTLS] Add NamedCurve::P384](https://github.com/webrtc-rs/webrtc/pull/254) contributed by [neonphog](https://github.com/neonphog)

dtls/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "webrtc-dtls"
3-
version = "0.6.1"
3+
version = "0.7.0"
44
authors = ["Rain Liu <[email protected]>"]
55
edition = "2018"
66
description = "A pure Rust implementation of DTLS"

webrtc/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ rust-version = "1.60.0"
1515

1616
[dependencies]
1717
data = { version = "0.5.1", path = "../data", package = "webrtc-data" }
18-
dtls = { version = "0.6.1", path = "../dtls", package = "webrtc-dtls" }
18+
dtls = { version = "0.7.0", path = "../dtls", package = "webrtc-dtls" }
1919
ice = { version = "0.9.0", path = "../ice", package = "webrtc-ice" }
2020
interceptor = { version = "0.8.0", path = "../interceptor" }
2121
mdns = { version = "0.5.0", path = "../mdns", package = "webrtc-mdns" }

0 commit comments

Comments
 (0)