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 <[email protected]>"]
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 <[email protected]>"]
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 <[email protected]>"]
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 <[email protected]>"]
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 <[email protected]>"]
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).

media/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-media"
3-
version = "0.4.6"
3+
version = "0.4.7"
44
authors = ["Rain Liu <[email protected]>"]
55
edition = "2018"
66
description = "A pure Rust implementation of WebRTC Media API"
@@ -12,8 +12,8 @@ repository = "https://github.com/webrtc-rs/media"
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 = ["marshal"] }
16-
rtp = { version = "0.6.6", path = "../rtp" }
15+
util = { version = "0.6.0", path = "../util", package = "webrtc-util", default-features = false, features = ["marshal"] }
16+
rtp = { version = "0.6.7", path = "../rtp" }
1717

1818
byteorder = "1"
1919
bytes = "1"

rtcp/CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* Adds `IntoIterator` for `NackPair` which iterates over all the sequence numbers specified by the `NackPair`. This is similar to `packet_list` but without requiring the allocation of a Vec. Added in [#225 Add RTP Stats to stats report](https://github.com/webrtc-rs/webrtc/pull/225) by [@k0nserv](https://github.com/k0nserv).
99

1010

11-
## Prior to 0.6.6
11+
## Prior to 0.7.0
1212

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

rtcp/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rtcp"
3-
version = "0.6.6"
3+
version = "0.7.0"
44
authors = ["Rain Liu <[email protected]>", "Michael Uti <[email protected]>"]
55
edition = "2018"
66
description = "A pure Rust implementation of RTCP"
@@ -10,7 +10,7 @@ homepage = "https://webrtc.rs"
1010
repository = "https://github.com/webrtc-rs/rtcp"
1111

1212
[dependencies]
13-
util = { version = "0.5.4", path = "../util", package = "webrtc-util", default-features = false, features = ["marshal"] }
13+
util = { version = "0.6.0", path = "../util", package = "webrtc-util", default-features = false, features = ["marshal"] }
1414

1515
bytes = "1"
1616
thiserror = "1.0"

rtp/CHANGELOG.md

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

33
## Unreleased
44

5-
## Prior to 0.6.5
5+
## v0.6.7
66

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

rtp/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rtp"
3-
version = "0.6.6"
3+
version = "0.6.7"
44
authors = ["Rain Liu <[email protected]>", "Michael Uti <[email protected]>"]
55
edition = "2018"
66
description = "A pure Rust implementation of RTP"
@@ -10,7 +10,7 @@ homepage = "https://webrtc.rs"
1010
repository = "https://github.com/webrtc-rs/rtp"
1111

1212
[dependencies]
13-
util = { version = "0.5.4", path = "../util", package = "webrtc-util", default-features = false, features = ["marshal"] }
13+
util = { version = "0.6.0", path = "../util", package = "webrtc-util", default-features = false, features = ["marshal"] }
1414

1515
bytes = "1"
1616
rand = "0.8.5"

sctp/CHANGELOG.md

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

33
## Unreleased
44

5-
* 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).
5+
* 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).
66
* [#245 Fix incorrect chunk type Display for CWR](https://github.com/webrtc-rs/webrtc/pull/245) by [@k0nserv](https://github.com/k0nserv).
77

8-
## Prior to 0.6.0
8+
## Prior to 0.6.1
99

10-
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/sctp/releases).
10+
Before 0.6.1 there was no changelog, previous changes are sometimes, but not always, available in the [GitHub Releases](https://github.com/webrtc-rs/sctp/releases).
1111

sctp/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-sctp"
3-
version = "0.6.0"
3+
version = "0.6.1"
44
authors = ["Rain Liu <[email protected]>"]
55
edition = "2018"
66
description = "A pure Rust implementation of SCTP"
@@ -12,7 +12,7 @@ repository = "https://github.com/webrtc-rs/sctp"
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
tokio = { version = "1.19", features = ["full"] }
1818
bytes = "1"

sdp/CHANGELOG.md

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

77
* [#10 update deps + loosen some requirements](https://github.com/webrtc-rs/sdp/pull/10) by [@melekes](https://github.com/melekes).
88

9-
## Prior to 0.5.1
9+
## Prior to 0.5.2
1010

11-
Before 0.5.1 there was no changelog, previous changes are sometimes, but not always, available in the [GitHub Releases](https://github.com/webrtc-rs/sdp/releases).
11+
Before 0.5.2 there was no changelog, previous changes are sometimes, but not always, available in the [GitHub Releases](https://github.com/webrtc-rs/sdp/releases).
1212

sdp/Cargo.toml

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

srtp/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
## v0.9.0
66

77
* [#8 update deps + loosen some requirements](https://github.com/webrtc-rs/srtp/pull/8) by [@melekes](https://github.com/melekes).
8-
* 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).
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).
99

1010
## Prior to 0.8.9
1111

srtp/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "webrtc-srtp"
3-
version = "0.8.9"
3+
version = "0.9.0"
44
authors = ["Rain Liu <[email protected]>"]
55
edition = "2018"
66
description = "A pure Rust implementation of SRTP"
@@ -10,13 +10,13 @@ homepage = "https://webrtc.rs"
1010
repository = "https://github.com/webrtc-rs/srtp"
1111

1212
[dependencies]
13-
util = { version = "0.5.4", path = "../util", package = "webrtc-util", default-features = false, features = [
13+
util = { version = "0.6.0", path = "../util", package = "webrtc-util", default-features = false, features = [
1414
"conn",
1515
"buffer",
1616
"marshal",
1717
] }
18-
rtp = { version = "0.6.6", path = "../rtp" }
19-
rtcp = { version = "0.6.6", path = "../rtcp" }
18+
rtp = { version = "0.6.7", path = "../rtp" }
19+
rtcp = { version = "0.7.0", path = "../rtcp" }
2020

2121
byteorder = "1"
2222
bytes = "1"

stun/CHANGELOG.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,11 @@
22

33
## Unreleased
44

5+
## v0.4.3
6+
57
* [#9 update deps + loosen some requirements ](https://github.com/webrtc-rs/stun/pull/9) by [@melekes](https://github.com/melekes).
68

7-
## Prior to 0.1.13
9+
## Prior to 0.4.3
810

9-
Before 0.1.13 there was no changelog, previous changes are sometimes, but not always, available in the [GitHub Releases](https://github.com/webrtc-rs/stun/releases).
11+
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/stun/releases).
1012

stun/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "stun"
3-
version = "0.4.2"
3+
version = "0.4.3"
44
authors = ["Rain Liu <[email protected]>"]
55
edition = "2018"
66
description = "A pure Rust implementation of STUN"
@@ -14,7 +14,7 @@ default = []
1414
bench = []
1515

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

1919
tokio = { version = "1.19", features = ["full"] }
2020
lazy_static = "1.4"

turn/CHANGELOG.md

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

33
## Unreleased
44

5-
## v0.2.0
5+
## v0.6.0
66

77
* [#15 update deps + loosen some requirements](https://github.com/webrtc-rs/turn/pull/15) by [@melekes](https://github.com/melekes).
88
* [#11 Fixed spelling of convenience](https://github.com/webrtc-rs/turn/pull/11) by [@Charles-Schleich ](https://github.com/Charles-Schleich).
99
* 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).
1010
* [#246 Fix warnings on windows](https://github.com/webrtc-rs/webrtc/pull/246) by [@https://github.com/xnorpx](https://github.com/xnorpx).
1111

1212

13-
## Prior to 0.1.3
13+
## Prior to 0.6.0
1414

15-
Before 0.1.3 there was no changelog, previous changes are sometimes, but not always, available in the [GitHub Releases](https://github.com/webrtc-rs/turn/releases).
15+
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/turn/releases).
1616

0 commit comments

Comments
 (0)