Skip to content

Commit

Permalink
Bump all sub crate versions (#286)
Browse files Browse the repository at this point in the history
  • Loading branch information
lookback-hugotunius authored Sep 7, 2022
1 parent 5bb4663 commit 258da87
Show file tree
Hide file tree
Showing 28 changed files with 104 additions and 79 deletions.
6 changes: 3 additions & 3 deletions data/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "webrtc-data"
version = "0.4.0"
version = "0.5.0"
authors = ["Rain Liu <[email protected]>"]
edition = "2018"
description = "A pure Rust implementation of WebRTC DataChannel API"
Expand All @@ -12,8 +12,8 @@ repository = "https://github.com/webrtc-rs/data"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

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

tokio = { version = "1.19", features = ["full"] }
bytes = "1"
Expand Down
10 changes: 8 additions & 2 deletions dtls/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

## Unreleased

## Prior to 0.5.4
## v0.6.0

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).
* [#254 [DTLS] Add NamedCurve::P384](https://github.com/webrtc-rs/webrtc/pull/254) contributed by [neonphog](https://github.com/neonphog)
* 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).
* 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)

## Prior to 0.6.0

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).
4 changes: 2 additions & 2 deletions dtls/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "webrtc-dtls"
version = "0.5.4"
version = "0.6.0"
authors = ["Rain Liu <[email protected]>"]
edition = "2018"
description = "A pure Rust implementation of DTLS"
Expand All @@ -12,7 +12,7 @@ repository = "https://github.com/webrtc-rs/dtls"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

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

byteorder = "1"
rand_core = "0.6.3"
Expand Down
10 changes: 8 additions & 2 deletions ice/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,13 @@

## Unreleased

## Prior to 0.7.1
### v0.8.0

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).
* 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).
* 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)


## Prior to 0.8.0

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).

10 changes: 5 additions & 5 deletions ice/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "webrtc-ice"
version = "0.7.1"
version = "0.8.0"
authors = ["Rain Liu <[email protected]>"]
edition = "2018"
description = "A pure Rust implementation of ICE"
Expand All @@ -12,10 +12,10 @@ repository = "https://github.com/webrtc-rs/ice"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

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

async-trait = "0.1.56"
crc = "3.0"
Expand Down
5 changes: 3 additions & 2 deletions interceptor/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,9 @@

* [#14 Don't panic on seqnum rollover](https://github.com/webrtc-rs/interceptor/pull/14) contributed by by [@pthatcher](https://github.com/pthatcher).
* 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).
* 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).

## Prior to 0.7.7
## Prior to 0.8.0

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).
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).

10 changes: 5 additions & 5 deletions interceptor/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "interceptor"
version = "0.7.7"
version = "0.8.0"
authors = ["Rain Liu <[email protected]>"]
edition = "2018"
description = "A pure Rust implementation of Pluggable RTP/RTCP processors"
Expand All @@ -10,10 +10,10 @@ homepage = "https://webrtc.rs"
repository = "https://github.com/webrtc-rs/interceptor"

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

tokio = { version = "1.19", features = ["sync", "time"] }
async-trait = "0.1.56"
Expand Down
6 changes: 3 additions & 3 deletions mdns/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@

## v0.5.0

* 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).
* 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).
* [#275 mdns: get_interface_addr_for_ip once per query](https://github.com/webrtc-rs/webrtc/pull/275) by [@melekes](https://github.com/melekes).


## Prior to 0.4.3
## Prior to 0.5.0

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).
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).

4 changes: 2 additions & 2 deletions mdns/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "webrtc-mdns"
version = "0.4.3"
version = "0.5.0"
authors = ["Rain Liu <[email protected]>"]
edition = "2018"
description = "A pure Rust implementation of mDNS"
Expand All @@ -16,7 +16,7 @@ default = [ "reuse_port" ]
reuse_port = []

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

tokio = { version = "1.19", features = ["full"] }
socket2 = { version = "0.4.4", features = ["all"] }
Expand Down
10 changes: 8 additions & 2 deletions media/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

## Unreleased

## Prior to 0.4.6
## v0.4.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).
* Bumped util dependency to `0.6.0`.
* Bumped rtp dependency to `0.6.0`.


## Prior to 0.4.7

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).
6 changes: 3 additions & 3 deletions media/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "webrtc-media"
version = "0.4.6"
version = "0.4.7"
authors = ["Rain Liu <[email protected]>"]
edition = "2018"
description = "A pure Rust implementation of WebRTC Media API"
Expand All @@ -12,8 +12,8 @@ repository = "https://github.com/webrtc-rs/media"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
util = { version = "0.5.4", path = "../util", package = "webrtc-util", default-features = false, features = ["marshal"] }
rtp = { version = "0.6.6", path = "../rtp" }
util = { version = "0.6.0", path = "../util", package = "webrtc-util", default-features = false, features = ["marshal"] }
rtp = { version = "0.6.7", path = "../rtp" }

byteorder = "1"
bytes = "1"
Expand Down
4 changes: 2 additions & 2 deletions rtcp/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* 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).


## Prior to 0.6.6
## Prior to 0.7.0

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).
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).

4 changes: 2 additions & 2 deletions rtcp/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rtcp"
version = "0.6.6"
version = "0.7.0"
authors = ["Rain Liu <[email protected]>", "Michael Uti <[email protected]>"]
edition = "2018"
description = "A pure Rust implementation of RTCP"
Expand All @@ -10,7 +10,7 @@ homepage = "https://webrtc.rs"
repository = "https://github.com/webrtc-rs/rtcp"

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

bytes = "1"
thiserror = "1.0"
Expand Down
8 changes: 6 additions & 2 deletions rtp/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@

## Unreleased

## Prior to 0.6.5
## v0.6.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).
* Bumped util dependecy to `0.6.0`.

## Prior to 0.6.7

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).

4 changes: 2 additions & 2 deletions rtp/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rtp"
version = "0.6.6"
version = "0.6.7"
authors = ["Rain Liu <[email protected]>", "Michael Uti <[email protected]>"]
edition = "2018"
description = "A pure Rust implementation of RTP"
Expand All @@ -10,7 +10,7 @@ homepage = "https://webrtc.rs"
repository = "https://github.com/webrtc-rs/rtp"

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

bytes = "1"
rand = "0.8.5"
Expand Down
6 changes: 3 additions & 3 deletions sctp/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

## Unreleased

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

## Prior to 0.6.0
## Prior to 0.6.1

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).
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).

4 changes: 2 additions & 2 deletions sctp/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "webrtc-sctp"
version = "0.6.0"
version = "0.6.1"
authors = ["Rain Liu <[email protected]>"]
edition = "2018"
description = "A pure Rust implementation of SCTP"
Expand All @@ -12,7 +12,7 @@ repository = "https://github.com/webrtc-rs/sctp"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

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

tokio = { version = "1.19", features = ["full"] }
bytes = "1"
Expand Down
4 changes: 2 additions & 2 deletions sdp/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

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

## Prior to 0.5.1
## Prior to 0.5.2

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).
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).

2 changes: 1 addition & 1 deletion sdp/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sdp"
version = "0.5.1"
version = "0.5.2"
authors = ["Rain Liu <[email protected]>"]
edition = "2018"
description = "A pure Rust implementation of SDP"
Expand Down
2 changes: 1 addition & 1 deletion srtp/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
## v0.9.0

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

## Prior to 0.8.9

Expand Down
8 changes: 4 additions & 4 deletions srtp/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "webrtc-srtp"
version = "0.8.9"
version = "0.9.0"
authors = ["Rain Liu <[email protected]>"]
edition = "2018"
description = "A pure Rust implementation of SRTP"
Expand All @@ -10,13 +10,13 @@ homepage = "https://webrtc.rs"
repository = "https://github.com/webrtc-rs/srtp"

[dependencies]
util = { version = "0.5.4", path = "../util", package = "webrtc-util", default-features = false, features = [
util = { version = "0.6.0", path = "../util", package = "webrtc-util", default-features = false, features = [
"conn",
"buffer",
"marshal",
] }
rtp = { version = "0.6.6", path = "../rtp" }
rtcp = { version = "0.6.6", path = "../rtcp" }
rtp = { version = "0.6.7", path = "../rtp" }
rtcp = { version = "0.7.0", path = "../rtcp" }

byteorder = "1"
bytes = "1"
Expand Down
6 changes: 4 additions & 2 deletions stun/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,11 @@

## Unreleased

## v0.4.3

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

## Prior to 0.1.13
## Prior to 0.4.3

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).
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).

4 changes: 2 additions & 2 deletions stun/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "stun"
version = "0.4.2"
version = "0.4.3"
authors = ["Rain Liu <[email protected]>"]
edition = "2018"
description = "A pure Rust implementation of STUN"
Expand All @@ -14,7 +14,7 @@ default = []
bench = []

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

tokio = { version = "1.19", features = ["full"] }
lazy_static = "1.4"
Expand Down
6 changes: 3 additions & 3 deletions turn/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@

## Unreleased

## v0.2.0
## v0.6.0

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


## Prior to 0.1.3
## Prior to 0.6.0

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).
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).

Loading

0 comments on commit 258da87

Please sign in to comment.