Skip to content

Commit

Permalink
chore: release s2n-quic 1.1.0 (#1272)
Browse files Browse the repository at this point in the history
chore: release s2n-quic 1.1.0

This bumps the versions of all changed crates based on semver.
  • Loading branch information
lundinc2 authored Apr 21, 2022
1 parent c3ab570 commit 776007d
Show file tree
Hide file tree
Showing 10 changed files with 27 additions and 25 deletions.
3 changes: 2 additions & 1 deletion netbench/netbench-driver/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
[package]
name = "netbench-driver"
# this in an unpublished internal crate so the version should not be changed
version = "0.1.0"
authors = ["AWS s2n"]
edition = "2018"
Expand All @@ -13,7 +14,7 @@ mimalloc = "0.1"
netbench = { version = "0.1", path = "../netbench" }
probe = "0.3"
s2n-quic = { version = "1", path = "../../quic/s2n-quic", features = ["provider-tls-s2n"] }
s2n-quic-core = { version = "0.1", path = "../../quic/s2n-quic-core", features = ["testing"] }
s2n-quic-core = { version = "0.2", path = "../../quic/s2n-quic-core", features = ["testing"] }
structopt = "0.3"
tokio = { version = "1", features = ["io-util", "net", "time"] }
tokio-native-tls = "0.3"
Expand Down
3 changes: 2 additions & 1 deletion netbench/netbench/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
[package]
name = "netbench"
# this in an unpublished internal crate so the version should not be changed
version = "0.1.0"
authors = ["AWS s2n"]
edition = "2018"
Expand All @@ -20,7 +21,7 @@ num-traits = "0.2"
openssl = "0.10"
probe = "0.3"
rcgen = "0.9"
s2n-quic-core = { version = "0.1", path = "../../quic/s2n-quic-core", features = ["testing"] }
s2n-quic-core = { version = "0.2", path = "../../quic/s2n-quic-core", features = ["testing"] }
s2n-quic = { version = "1", path = "../../quic/s2n-quic", optional = true }
serde = { version = "1", features = ["derive", "rc"] }
serde_json = "1"
Expand Down
2 changes: 1 addition & 1 deletion quic/s2n-quic-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "s2n-quic-core"
version = "0.1.3"
version = "0.2.0"
description = "Internal crate used by s2n-quic"
repository = "https://github.com/aws/s2n-quic"
authors = ["AWS s2n"]
Expand Down
4 changes: 2 additions & 2 deletions quic/s2n-quic-crypto/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "s2n-quic-crypto"
version = "0.1.0"
version = "0.2.0"
description = "Internal crate used by s2n-quic"
repository = "https://github.com/aws/s2n-quic"
authors = ["AWS s2n"]
Expand All @@ -22,7 +22,7 @@ lazy_static = "1"
ghash = { version = "0.4", optional = true }
ring = { version = "0.16", default-features = false }
s2n-codec = { path = "../../common/s2n-codec", default-features = false, version = "0.1.0" }
s2n-quic-core = { path = "../s2n-quic-core", default-features = false, version = "0.1.3" }
s2n-quic-core = { path = "../s2n-quic-core", default-features = false, version = "0.2.0" }
zeroize = { version = "1", default-features = false, features = ["zeroize_derive"] }

[dev-dependencies]
Expand Down
4 changes: 2 additions & 2 deletions quic/s2n-quic-platform/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "s2n-quic-platform"
version = "0.1.2"
version = "0.2.0"
description = "Internal crate used by s2n-quic"
repository = "https://github.com/aws/s2n-quic"
authors = ["AWS s2n"]
Expand All @@ -24,7 +24,7 @@ errno = "0.2"
futures = { version = "0.3", default-features = false, features = ["async-await"], optional = true }
lazy_static = { version = "1", optional = true }
pin-project = { version = "1", optional = true }
s2n-quic-core = { version = "=0.1.3", path = "../s2n-quic-core", default-features = false }
s2n-quic-core = { version = "=0.2.0", path = "../s2n-quic-core", default-features = false }
socket2 = { version = "0.4", features = ["all"], optional = true }
tokio = { version = "1", default-features = false, features = ["macros", "net", "rt", "time"], optional = true }
zeroize = { version = "1", default-features = false, optional = true }
Expand Down
6 changes: 3 additions & 3 deletions quic/s2n-quic-rustls/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "s2n-quic-rustls"
version = "0.1.2"
version = "0.2.0"
description = "Internal crate used by s2n-quic"
repository = "https://github.com/aws/s2n-quic"
authors = ["AWS s2n"]
Expand All @@ -14,8 +14,8 @@ bytes = { version = "1", default-features = false }
rustls = { version = "0.20", features = ["quic"] }
rustls-pemfile = "0.3"
s2n-codec = { version = "=0.1.0", path = "../../common/s2n-codec", default-features = false }
s2n-quic-core = { version = "=0.1.3", path = "../s2n-quic-core", default-features = false }
s2n-quic-crypto = { version = "=0.1.0", path = "../s2n-quic-crypto", default-features = false }
s2n-quic-core = { version = "=0.2.0", path = "../s2n-quic-core", default-features = false }
s2n-quic-crypto = { version = "=0.2.0", path = "../s2n-quic-crypto", default-features = false }

[dev-dependencies]
insta = "1"
Expand Down
6 changes: 3 additions & 3 deletions quic/s2n-quic-tls-default/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "s2n-quic-tls-default"
version = "0.1.2"
version = "0.2.0"
description = "Internal crate used by s2n-quic"
repository = "https://github.com/aws/s2n-quic"
authors = ["AWS s2n"]
Expand All @@ -10,7 +10,7 @@ license = "Apache-2.0"
exclude = ["corpus.tar.gz"]

[target.'cfg(unix)'.dependencies]
s2n-quic-tls = { version = "=0.1.2", path = "../s2n-quic-tls" }
s2n-quic-tls = { version = "=0.2.0", path = "../s2n-quic-tls" }

[target.'cfg(not(unix))'.dependencies]
s2n-quic-rustls = { version = "=0.1.2", path = "../s2n-quic-rustls" }
s2n-quic-rustls = { version = "=0.2.0", path = "../s2n-quic-rustls" }
6 changes: 3 additions & 3 deletions quic/s2n-quic-tls/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "s2n-quic-tls"
version = "0.1.2"
version = "0.2.0"
description = "Internal crate used by s2n-quic"
repository = "https://github.com/aws/s2n-quic"
authors = ["AWS s2n"]
Expand All @@ -18,8 +18,8 @@ errno = "0.2"
libc = "0.2"

s2n-codec = { version = "=0.1.0", path = "../../common/s2n-codec", default-features = false }
s2n-quic-core = { version = "=0.1.3", path = "../s2n-quic-core", default-features = false }
s2n-quic-crypto = { version = "=0.1.0", path = "../s2n-quic-crypto", default-features = false }
s2n-quic-core = { version = "=0.2.0", path = "../s2n-quic-core", default-features = false }
s2n-quic-crypto = { version = "=0.2.0", path = "../s2n-quic-crypto", default-features = false }
s2n-tls = { version = "=0.0.5", features = ["quic"] }

[dev-dependencies]
Expand Down
4 changes: 2 additions & 2 deletions quic/s2n-quic-transport/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "s2n-quic-transport"
version = "0.1.3"
version = "0.2.0"
description = "Internal crate used by s2n-quic"
repository = "https://github.com/aws/s2n-quic"
authors = ["AWS s2n"]
Expand All @@ -21,7 +21,7 @@ hashbrown = "0.11"
intrusive-collections = "0.9"
once_cell = "1"
s2n-codec = { version = "=0.1.0", path = "../../common/s2n-codec", features = ["bytes"], default-features = false }
s2n-quic-core = { version = "=0.1.3", path = "../s2n-quic-core", features = ["alloc"], default-features = false }
s2n-quic-core = { version = "=0.2.0", path = "../s2n-quic-core", features = ["alloc"], default-features = false }
siphasher = "0.3"
smallvec = { version = "1", default-features = false }

Expand Down
14 changes: 7 additions & 7 deletions quic/s2n-quic/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "s2n-quic"
version = "1.0.2"
version = "1.1.0"
description = "A Rust implementation of the IETF QUIC protocol"
repository = "https://github.com/aws/s2n-quic"
authors = ["AWS s2n"]
Expand Down Expand Up @@ -47,12 +47,12 @@ rand = "0.8"
rand_chacha = "0.3"
ring = { version = "0.16", optional = true, default-features = false }
s2n-codec = { version = "=0.1.0", path = "../../common/s2n-codec" }
s2n-quic-core = { version = "=0.1.3", path = "../s2n-quic-core" }
s2n-quic-platform = { version = "=0.1.2", path = "../s2n-quic-platform", features = ["tokio-runtime"] }
s2n-quic-rustls = { version = "=0.1.2", path = "../s2n-quic-rustls", optional = true }
s2n-quic-tls = { version = "=0.1.2", path = "../s2n-quic-tls", optional = true }
s2n-quic-tls-default = { version = "=0.1.2", path = "../s2n-quic-tls-default", optional = true }
s2n-quic-transport = { version = "=0.1.3", path = "../s2n-quic-transport" }
s2n-quic-core = { version = "=0.2.0", path = "../s2n-quic-core" }
s2n-quic-platform = { version = "=0.2.0", path = "../s2n-quic-platform", features = ["tokio-runtime"] }
s2n-quic-rustls = { version = "=0.2.0", path = "../s2n-quic-rustls", optional = true }
s2n-quic-tls = { version = "=0.2.0", path = "../s2n-quic-tls", optional = true }
s2n-quic-tls-default = { version = "=0.2.0", path = "../s2n-quic-tls-default", optional = true }
s2n-quic-transport = { version = "=0.2.0", path = "../s2n-quic-transport" }
tokio = { version = "1", default-features = false }
zerocopy = { version = "=0.6.0", optional = true }
zerocopy-derive = { version = "=0.3.0", optional = true }
Expand Down

0 comments on commit 776007d

Please sign in to comment.