Skip to content

Commit 258da87

Browse files
Bump all sub crate versions (#286)
1 parent 5bb4663 commit 258da87

28 files changed

+104
-79
lines changed

data/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "webrtc-data"
3-
version = "0.4.0"
3+
version = "0.5.0"
44
authors = ["Rain Liu <yliu@webrtc.rs>"]
55
edition = "2018"
66
description = "A pure Rust implementation of WebRTC DataChannel API"
@@ -12,8 +12,8 @@ repository = "https://github.com/webrtc-rs/data"
1212
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1313

1414
[dependencies]
15-
util = { version = "0.5.4", path = "../util", package = "webrtc-util", default-features = false, features = ["conn", "marshal"] }
16-
sctp = { version = "0.6.0", path = "../sctp", package = "webrtc-sctp" }
15+
util = { version = "0.6.0", path = "../util", package = "webrtc-util", default-features = false, features = ["conn", "marshal"] }
16+
sctp = { version = "0.6.1", path = "../sctp", package = "webrtc-sctp" }
1717

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

dtls/CHANGELOG.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
## Unreleased
44

5-
## Prior to 0.5.4
5+
## v0.6.0
66

7-
Before 0.5.4 there was no changelog, previous changes are sometimes, but not always, available in the [GitHub Releases](https://github.com/webrtc-rs/dtls/releases).
7+
* [#254 [DTLS] Add NamedCurve::P384](https://github.com/webrtc-rs/webrtc/pull/254) contributed by [neonphog](https://github.com/neonphog)
8+
* Increased min verison of `log` dependency to `0.4.16`. [#250 Fix log at ^0.4.16 to make tests compile](https://github.com/webrtc-rs/webrtc/pull/250) by [@k0nserv](https://github.com/k0nserv).
9+
* Increased serde's minimum version to 1.0.110 [#243 Fixes for cargo minimal-versions](https://github.com/webrtc-rs/webrtc/pull/243) contributed by [algesten](https://github.com/algesten)
10+
11+
## Prior to 0.6.0
12+
13+
Before 0.6.0 there was no changelog, previous changes are sometimes, but not always, available in the [GitHub Releases](https://github.com/webrtc-rs/dtls/releases).

dtls/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "webrtc-dtls"
3-
version = "0.5.4"
3+
version = "0.6.0"
44
authors = ["Rain Liu <yuliu@webrtc.rs>"]
55
edition = "2018"
66
description = "A pure Rust implementation of DTLS"
@@ -12,7 +12,7 @@ repository = "https://github.com/webrtc-rs/dtls"
1212
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1313

1414
[dependencies]
15-
util = { version = "0.5.4", path = "../util", package = "webrtc-util", default-features = false, features = ["conn"] }
15+
util = { version = "0.6.0", path = "../util", package = "webrtc-util", default-features = false, features = ["conn"] }
1616

1717
byteorder = "1"
1818
rand_core = "0.6.3"

ice/CHANGELOG.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,13 @@
22

33
## Unreleased
44

5-
## Prior to 0.7.1
5+
### v0.8.0
66

7-
Before 0.7.1 there was no changelog, previous changes are sometimes, but not always, available in the [GitHub Releases](https://github.com/webrtc-rs/ice/releases).
7+
* Increased min verison of `log` dependency to `0.4.16`. [#250 Fix log at ^0.4.16 to make tests compile](https://github.com/webrtc-rs/webrtc/pull/250) by [@k0nserv](https://github.com/k0nserv).
8+
* Incresed serde's minimum version to 1.0.102 [#243 Fixes for cargo minimal-versions](https://github.com/webrtc-rs/webrtc/pull/243) contributed by [algesten](https://github.com/algesten)
9+
10+
11+
## Prior to 0.8.0
12+
13+
Before 0.8.0 there was no changelog, previous changes are sometimes, but not always, available in the [GitHub Releases](https://github.com/webrtc-rs/ice/releases).
814

ice/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "webrtc-ice"
3-
version = "0.7.1"
3+
version = "0.8.0"
44
authors = ["Rain Liu <yliu@webrtc.rs>"]
55
edition = "2018"
66
description = "A pure Rust implementation of ICE"
@@ -12,10 +12,10 @@ repository = "https://github.com/webrtc-rs/ice"
1212
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1313

1414
[dependencies]
15-
util = { version = "0.5.4", path = "../util", package = "webrtc-util", default-features = false, features = ["conn", "vnet", "sync"] }
16-
turn = { version = "0.5.4", path = "../turn" }
17-
stun = { version = "0.4.2", path = "../stun" }
18-
mdns = { version = "0.4.3", path = "../mdns", package = "webrtc-mdns" }
15+
util = { version = "0.6.0", path = "../util", package = "webrtc-util", default-features = false, features = ["conn", "vnet", "sync"] }
16+
turn = { version = "0.6.0", path = "../turn" }
17+
stun = { version = "0.4.3", path = "../stun" }
18+
mdns = { version = "0.5.0", path = "../mdns", package = "webrtc-mdns" }
1919

2020
async-trait = "0.1.56"
2121
crc = "3.0"

interceptor/CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,9 @@
66

77
* [#14 Don't panic on seqnum rollover](https://github.com/webrtc-rs/interceptor/pull/14) contributed by by [@pthatcher](https://github.com/pthatcher).
88
* Add stats interceptor. Contributed by [@k0nserv](https://github.com/k0nserv) in [#277](https://github.com/webrtc-rs/webrtc/pull/277/) and [#225](https://github.com/webrtc-rs/webrtc/pull/225).
9+
* Increased min verison of `log` dependency to `0.4.16`. [#250 Fix log at ^0.4.16 to make tests compile](https://github.com/webrtc-rs/webrtc/pull/250) by [@k0nserv](https://github.com/k0nserv).
910

10-
## Prior to 0.7.7
11+
## Prior to 0.8.0
1112

12-
Before 0.7.7 there was no changelog, previous changes are sometimes, but not always, available in the [GitHub Releases](https://github.com/webrtc-rs/interceptor/releases).
13+
Before 0.8.0 there was no changelog, previous changes are sometimes, but not always, available in the [GitHub Releases](https://github.com/webrtc-rs/interceptor/releases).
1314

interceptor/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "interceptor"
3-
version = "0.7.7"
3+
version = "0.8.0"
44
authors = ["Rain Liu <yliu@webrtc.rs>"]
55
edition = "2018"
66
description = "A pure Rust implementation of Pluggable RTP/RTCP processors"
@@ -10,10 +10,10 @@ homepage = "https://webrtc.rs"
1010
repository = "https://github.com/webrtc-rs/interceptor"
1111

1212
[dependencies]
13-
util = { version = "0.5.4", path = "../util", package = "webrtc-util", default-features = false, features = ["marshal", "sync"] }
14-
rtp = { version = "0.6.6", path = "../rtp" }
15-
rtcp = { version = "0.6.6", path = "../rtcp" }
16-
srtp = { version = "0.8.9", path = "../srtp", package = "webrtc-srtp" }
13+
util = { version = "0.6.0", path = "../util", package = "webrtc-util", default-features = false, features = ["marshal", "sync"] }
14+
rtp = { version = "0.6.7", path = "../rtp" }
15+
rtcp = { version = "0.7.0", path = "../rtcp" }
16+
srtp = { version = "0.9.0", path = "../srtp", package = "webrtc-srtp" }
1717

1818
tokio = { version = "1.19", features = ["sync", "time"] }
1919
async-trait = "0.1.56"

mdns/CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44

55
## v0.5.0
66

7-
* Increase min verison of `log` dependency to `0.4.16`. [#250 Fix log at ^0.4.16 to make tests compile](https://github.com/webrtc-rs/webrtc/pull/250) by [@k0nserv](https://github.com/k0nserv).
7+
* Increased min verison of `log` dependency to `0.4.16`. [#250 Fix log at ^0.4.16 to make tests compile](https://github.com/webrtc-rs/webrtc/pull/250) by [@k0nserv](https://github.com/k0nserv).
88
* [#275 mdns: get_interface_addr_for_ip once per query](https://github.com/webrtc-rs/webrtc/pull/275) by [@melekes](https://github.com/melekes).
99

1010

11-
## Prior to 0.4.3
11+
## Prior to 0.5.0
1212

13-
Before 0.4.3 there was no changelog, previous changes are sometimes, but not always, available in the [GitHub Releases](https://github.com/webrtc-rs/mdns/releases).
13+
Before 0.5.0 there was no changelog, previous changes are sometimes, but not always, available in the [GitHub Releases](https://github.com/webrtc-rs/mdns/releases).
1414

mdns/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "webrtc-mdns"
3-
version = "0.4.3"
3+
version = "0.5.0"
44
authors = ["Rain Liu <yuliu@webrtc.rs>"]
55
edition = "2018"
66
description = "A pure Rust implementation of mDNS"
@@ -16,7 +16,7 @@ default = [ "reuse_port" ]
1616
reuse_port = []
1717

1818
[dependencies]
19-
util = { version = "0.5.4", path = "../util", package = "webrtc-util", default-features = false, features = ["ifaces"] }
19+
util = { version = "0.6.0", path = "../util", package = "webrtc-util", default-features = false, features = ["ifaces"] }
2020

2121
tokio = { version = "1.19", features = ["full"] }
2222
socket2 = { version = "0.4.4", features = ["all"] }

media/CHANGELOG.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
## Unreleased
44

5-
## Prior to 0.4.6
5+
## v0.4.7
66

7-
Before 0.4.6 there was no changelog, previous changes are sometimes, but not always, available in the [GitHub Releases](https://github.com/webrtc-rs/media/releases).
7+
* Bumped util dependency to `0.6.0`.
8+
* Bumped rtp dependency to `0.6.0`.
9+
10+
11+
## Prior to 0.4.7
12+
13+
Before 0.4.7 there was no changelog, previous changes are sometimes, but not always, available in the [GitHub Releases](https://github.com/webrtc-rs/media/releases).

0 commit comments

Comments
 (0)