Skip to content

Commit 4d036b3

Browse files
Release data version 0.6.0
1 parent e73e9c1 commit 4d036b3

File tree

3 files changed

+9
-7
lines changed

3 files changed

+9
-7
lines changed

data/CHANGELOG.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,17 @@
22

33
## Unreleased
44

5-
### Breaking changes
6-
7-
* Make `DataChannel::on_buffered_amount_low` function non-async [#338](https://github.com/webrtc-rs/webrtc/pull/338).
8-
9-
## v0.5.1
5+
## v0.6.0
106

117
* Increased minimum support rust version to `1.60.0`.
128
* Do not loose data in `PollDataChannel::poll_write` [#341](https://github.com/webrtc-rs/webrtc/pull/341).
139
* `PollDataChannel::poll_shutdown`: make sure to flush any writes before shutting down [#340](https://github.com/webrtc-rs/webrtc/pull/340)
10+
* Increased required `webrtc-util` version to `0.7.0`.
11+
* Increased required `webrtc-sctp` version to `0.7.0`.
12+
13+
### Breaking changes
14+
15+
* Make `DataChannel::on_buffered_amount_low` function non-async [#338](https://github.com/webrtc-rs/webrtc/pull/338).
1416

1517
## v0.5.0
1618

data/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-data"
3-
version = "0.5.1"
3+
version = "0.6.0"
44
authors = ["Rain Liu <[email protected]>"]
55
edition = "2018"
66
description = "A pure Rust implementation of WebRTC DataChannel API"

webrtc/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ rust-version = "1.60.0"
1414
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1515

1616
[dependencies]
17-
data = { version = "0.5.1", path = "../data", package = "webrtc-data" }
17+
data = { version = "0.6.0", path = "../data", package = "webrtc-data" }
1818
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" }

0 commit comments

Comments
 (0)