Skip to content

Commit e73e9c1

Browse files
Release sctp version 0.7.0
1 parent a9de011 commit e73e9c1

File tree

4 files changed

+6
-9
lines changed

4 files changed

+6
-9
lines changed

data/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

1515
[dependencies]
1616
util = { version = "0.7.0", path = "../util", package = "webrtc-util", default-features = false, features = ["conn", "marshal"] }
17-
sctp = { version = "0.6.2", path = "../sctp", package = "webrtc-sctp" }
17+
sctp = { version = "0.7.0", path = "../sctp", package = "webrtc-sctp" }
1818

1919
tokio = { version = "1.19", features = ["full"] }
2020
bytes = "1"

sctp/CHANGELOG.md

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,18 @@
22

33
## Unreleased
44

5-
### Breaking
6-
7-
* Make `sctp::Stream::write` & `sctp::Stream::write_sctp` sync [#344](https://github.com/webrtc-rs/webrtc/pull/344)
8-
9-
## v0.6.2
5+
## v0.7.0
106

117
* Increased minimum support rust version to `1.60.0`.
128
* Do not loose data in `PollStream::poll_write` [#341](https://github.com/webrtc-rs/webrtc/pull/341).
139
* `PollStream::poll_shutdown`: make sure to flush any writes before shutting down [#340](https://github.com/webrtc-rs/webrtc/pull/340)
1410
* Fixed a possible bug when adding chunks to pending queue [#345](https://github.com/webrtc-rs/webrtc/pull/345)
11+
* Increased required `webrtc-util` version to `0.7.0`.
1512

1613
### Breaking changes
1714

1815
* Make `Stream::on_buffered_amount_low` function non-async [#338](https://github.com/webrtc-rs/webrtc/pull/338).
19-
16+
* Make `sctp::Stream::write` & `sctp::Stream::write_sctp` sync [#344](https://github.com/webrtc-rs/webrtc/pull/344)
2017

2118
## v0.6.1
2219

sctp/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-sctp"
3-
version = "0.6.2"
3+
version = "0.7.0"
44
authors = ["Rain Liu <[email protected]>"]
55
edition = "2018"
66
description = "A pure Rust implementation of SCTP"

webrtc/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ mdns = { version = "0.5.0", path = "../mdns", package = "webrtc-mdns" }
2222
media = { version = "0.4.7", path = "../media", package = "webrtc-media" }
2323
rtcp = { version = "0.7.0", path = "../rtcp" }
2424
rtp = { version = "0.6.7", path = "../rtp" }
25-
sctp = { version = "0.6.2", path = "../sctp", package = "webrtc-sctp" }
25+
sctp = { version = "0.7.0", path = "../sctp", package = "webrtc-sctp" }
2626
sdp = { version = "0.5.2", path = "../sdp" }
2727
srtp = { version = "0.9.0", path = "../srtp", package = "webrtc-srtp" }
2828
stun = { version = "0.4.3", path = "../stun" }

0 commit comments

Comments
 (0)