Skip to content

Commit

Permalink
chore: release 1.28 (#1967)
Browse files Browse the repository at this point in the history
  • Loading branch information
jmayclin authored Sep 14, 2023
1 parent 57c176c commit 2bc27fd
Show file tree
Hide file tree
Showing 9 changed files with 27 additions and 27 deletions.
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.27.0"
version = "0.27.1"
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.27.0"
version = "0.28.0"
description = "Internal crate used by s2n-quic"
repository = "https://github.com/aws/s2n-quic"
authors = ["AWS s2n"]
Expand All @@ -18,7 +18,7 @@ testing = []
cfg-if = "1"
lazy_static = "1"
s2n-codec = { version = "=0.7.0", path = "../../common/s2n-codec", default-features = false }
s2n-quic-core = { version = "=0.27.0", path = "../s2n-quic-core", default-features = false }
s2n-quic-core = { version = "=0.27.1", path = "../s2n-quic-core", default-features = false }
zeroize = { version = "1", default-features = false, features = ["derive"] }

[target.'cfg(target_os = "linux")'.dependencies]
Expand Down
6 changes: 3 additions & 3 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.28.0"
version = "0.28.1"
description = "Internal crate used by s2n-quic"
repository = "https://github.com/aws/s2n-quic"
authors = ["AWS s2n"]
Expand All @@ -25,8 +25,8 @@ bolero-generator = { version = "0.9", optional = true }
cfg-if = "1"
futures = { version = "0.3", default-features = false, features = ["async-await"], optional = true }
lazy_static = { version = "1", optional = true }
s2n-quic-core = { version = "=0.27.0", path = "../s2n-quic-core", default-features = false }
s2n-quic-xdp = { version = "=0.7.0", path = "../../tools/xdp/s2n-quic-xdp", optional = true }
s2n-quic-core = { version = "=0.27.1", path = "../s2n-quic-core", default-features = false }
s2n-quic-xdp = { version = "=0.7.1", path = "../../tools/xdp/s2n-quic-xdp", optional = true }
socket2 = { version = "0.5", features = ["all"], optional = true }
tokio = { version = "1", default-features = false, features = ["macros", "net", "rt", "time"], optional = true }
turmoil = { version = "0.5.2", 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.27.0"
version = "0.28.0"
description = "Internal crate used by s2n-quic"
repository = "https://github.com/aws/s2n-quic"
authors = ["AWS s2n"]
Expand All @@ -15,8 +15,8 @@ bytes = { version = "1", default-features = false }
rustls = { version = "0.21", features = ["quic"] }
rustls-pemfile = "1"
s2n-codec = { version = "=0.7.0", path = "../../common/s2n-codec", default-features = false, features = ["alloc"] }
s2n-quic-core = { version = "=0.27.0", path = "../s2n-quic-core", default-features = false, features = ["alloc"] }
s2n-quic-crypto = { version = "=0.27.0", path = "../s2n-quic-crypto", default-features = false }
s2n-quic-core = { version = "=0.27.1", path = "../s2n-quic-core", default-features = false, features = ["alloc"] }
s2n-quic-crypto = { version = "=0.28.0", path = "../s2n-quic-crypto", default-features = false }

[dev-dependencies]
insta = { version = "1", features = ["json"] }
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.27.0"
version = "0.28.0"
description = "Internal crate used by s2n-quic"
repository = "https://github.com/aws/s2n-quic"
authors = ["AWS s2n"]
Expand All @@ -11,7 +11,7 @@ license = "Apache-2.0"
exclude = ["corpus.tar.gz"]

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

[target.'cfg(not(unix))'.dependencies]
s2n-quic-rustls = { version = "=0.27.0", path = "../s2n-quic-rustls" }
s2n-quic-rustls = { version = "=0.28.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.27.0"
version = "0.28.0"
description = "Internal crate used by s2n-quic"
repository = "https://github.com/aws/s2n-quic"
authors = ["AWS s2n"]
Expand All @@ -19,8 +19,8 @@ bytes = { version = "1", default-features = false }
errno = "0.3"
libc = "0.2"
s2n-codec = { version = "=0.7.0", path = "../../common/s2n-codec", default-features = false }
s2n-quic-core = { version = "=0.27.0", path = "../s2n-quic-core", default-features = false, features = ["alloc"] }
s2n-quic-crypto = { version = "=0.27.0", path = "../s2n-quic-crypto", default-features = false }
s2n-quic-core = { version = "=0.27.1", path = "../s2n-quic-core", default-features = false, features = ["alloc"] }
s2n-quic-crypto = { version = "=0.28.0", path = "../s2n-quic-crypto", default-features = false }
s2n-tls = { version = "=0.0.36", 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.27.0"
version = "0.28.0"
description = "Internal crate used by s2n-quic"
repository = "https://github.com/aws/s2n-quic"
authors = ["AWS s2n"]
Expand All @@ -23,7 +23,7 @@ hashbrown = "0.13"
intrusive-collections = "0.9"
once_cell = "1"
s2n-codec = { version = "=0.7.0", path = "../../common/s2n-codec", features = ["bytes"], default-features = false }
s2n-quic-core = { version = "=0.27.0", path = "../s2n-quic-core", features = ["alloc"], default-features = false }
s2n-quic-core = { version = "=0.27.1", path = "../s2n-quic-core", features = ["alloc"], default-features = false }
siphasher = "1.0"
smallvec = { version = "1", default-features = false }

Expand Down
16 changes: 8 additions & 8 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.27.0"
version = "1.28.0"
description = "A Rust implementation of the IETF QUIC protocol"
repository = "https://github.com/aws/s2n-quic"
authors = ["AWS s2n"]
Expand Down Expand Up @@ -63,13 +63,13 @@ humansize = { version = "2", optional = true }
rand = "0.8"
rand_chacha = "0.3"
s2n-codec = { version = "=0.7.0", path = "../../common/s2n-codec" }
s2n-quic-core = { version = "=0.27.0", path = "../s2n-quic-core" }
s2n-quic-crypto = { version = "=0.27.0", path = "../s2n-quic-crypto", optional = true }
s2n-quic-platform = { version = "=0.28.0", path = "../s2n-quic-platform", features = ["tokio-runtime"] }
s2n-quic-rustls = { version = "=0.27.0", path = "../s2n-quic-rustls", optional = true }
s2n-quic-tls = { version = "=0.27.0", path = "../s2n-quic-tls", optional = true }
s2n-quic-tls-default = { version = "=0.27.0", path = "../s2n-quic-tls-default", optional = true }
s2n-quic-transport = { version = "=0.27.0", path = "../s2n-quic-transport" }
s2n-quic-core = { version = "=0.27.1", path = "../s2n-quic-core" }
s2n-quic-crypto = { version = "=0.28.0", path = "../s2n-quic-crypto", optional = true }
s2n-quic-platform = { version = "=0.28.1", path = "../s2n-quic-platform", features = ["tokio-runtime"] }
s2n-quic-rustls = { version = "=0.28.0", path = "../s2n-quic-rustls", optional = true }
s2n-quic-tls = { version = "=0.28.0", path = "../s2n-quic-tls", optional = true }
s2n-quic-tls-default = { version = "=0.28.0", path = "../s2n-quic-tls-default", optional = true }
s2n-quic-transport = { version = "=0.28.0", path = "../s2n-quic-transport" }
tokio = { version = "1", default-features = false }
zerocopy = { version = "0.6", optional = true }
zerocopy-derive = { version = "0.6", optional = true }
Expand Down
4 changes: 2 additions & 2 deletions tools/xdp/s2n-quic-xdp/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "s2n-quic-xdp"
version = "0.7.0"
version = "0.7.1"
description = "Internal crate used by s2n-quic"
repository = "https://github.com/aws/s2n-quic"
authors = ["AWS s2n"]
Expand All @@ -19,7 +19,7 @@ bitflags = "2"
errno = "0.3"
libc = "0.2"
s2n-codec = { version = "=0.7.0", path = "../../../common/s2n-codec" }
s2n-quic-core = { version = "=0.27.0", path = "../../../quic/s2n-quic-core" }
s2n-quic-core = { version = "=0.27.1", path = "../../../quic/s2n-quic-core" }
tokio = { version = "1", features = ["net"], optional = true }

[dev-dependencies]
Expand Down

0 comments on commit 2bc27fd

Please sign in to comment.