Skip to content

Commit 71e7bcd

Browse files
authored
chore: release 1.24.0 (#1861)
1 parent 994b150 commit 71e7bcd

File tree

9 files changed

+27
-27
lines changed

9 files changed

+27
-27
lines changed

quic/s2n-quic-core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "s2n-quic-core"
3-
version = "0.23.0"
3+
version = "0.24.0"
44
description = "Internal crate used by s2n-quic"
55
repository = "https://github.com/aws/s2n-quic"
66
authors = ["AWS s2n"]

quic/s2n-quic-crypto/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "s2n-quic-crypto"
3-
version = "0.23.0"
3+
version = "0.24.0"
44
description = "Internal crate used by s2n-quic"
55
repository = "https://github.com/aws/s2n-quic"
66
authors = ["AWS s2n"]
@@ -18,7 +18,7 @@ testing = []
1818
cfg-if = "1"
1919
lazy_static = "1"
2020
s2n-codec = { version = "=0.6.0", path = "../../common/s2n-codec", default-features = false }
21-
s2n-quic-core = { version = "=0.23.0", path = "../s2n-quic-core", default-features = false }
21+
s2n-quic-core = { version = "=0.24.0", path = "../s2n-quic-core", default-features = false }
2222
zeroize = { version = "1", default-features = false, features = ["derive"] }
2323

2424
[target.'cfg(target_os = "linux")'.dependencies]

quic/s2n-quic-platform/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "s2n-quic-platform"
3-
version = "0.24.0"
3+
version = "0.25.0"
44
description = "Internal crate used by s2n-quic"
55
repository = "https://github.com/aws/s2n-quic"
66
authors = ["AWS s2n"]
@@ -25,8 +25,8 @@ bolero-generator = { version = "0.9", optional = true }
2525
cfg-if = "1"
2626
futures = { version = "0.3", default-features = false, features = ["async-await"], optional = true }
2727
lazy_static = { version = "1", optional = true }
28-
s2n-quic-core = { version = "=0.23.0", path = "../s2n-quic-core", default-features = false }
29-
s2n-quic-xdp = { version = "=0.3.0", path = "../../tools/xdp/s2n-quic-xdp", optional = true }
28+
s2n-quic-core = { version = "=0.24.0", path = "../s2n-quic-core", default-features = false }
29+
s2n-quic-xdp = { version = "=0.4.0", path = "../../tools/xdp/s2n-quic-xdp", optional = true }
3030
socket2 = { version = "0.5", features = ["all"], optional = true }
3131
tokio = { version = "1", default-features = false, features = ["macros", "net", "rt", "time"], optional = true }
3232
turmoil = { version = "0.5.2", optional = true }

quic/s2n-quic-rustls/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "s2n-quic-rustls"
3-
version = "0.23.0"
3+
version = "0.24.0"
44
description = "Internal crate used by s2n-quic"
55
repository = "https://github.com/aws/s2n-quic"
66
authors = ["AWS s2n"]
@@ -15,8 +15,8 @@ bytes = { version = "1", default-features = false }
1515
rustls = { version = "0.20", features = ["quic"] }
1616
rustls-pemfile = "1"
1717
s2n-codec = { version = "=0.6.0", path = "../../common/s2n-codec", default-features = false }
18-
s2n-quic-core = { version = "=0.23.0", path = "../s2n-quic-core", default-features = false, features = ["alloc"] }
19-
s2n-quic-crypto = { version = "=0.23.0", path = "../s2n-quic-crypto", default-features = false }
18+
s2n-quic-core = { version = "=0.24.0", path = "../s2n-quic-core", default-features = false, features = ["alloc"] }
19+
s2n-quic-crypto = { version = "=0.24.0", path = "../s2n-quic-crypto", default-features = false }
2020

2121
[dev-dependencies]
2222
insta = { version = "1", features = ["json"] }
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "s2n-quic-tls-default"
3-
version = "0.23.0"
3+
version = "0.24.0"
44
description = "Internal crate used by s2n-quic"
55
repository = "https://github.com/aws/s2n-quic"
66
authors = ["AWS s2n"]
@@ -11,7 +11,7 @@ license = "Apache-2.0"
1111
exclude = ["corpus.tar.gz"]
1212

1313
[target.'cfg(unix)'.dependencies]
14-
s2n-quic-tls = { version = "=0.23.0", path = "../s2n-quic-tls" }
14+
s2n-quic-tls = { version = "=0.24.0", path = "../s2n-quic-tls" }
1515

1616
[target.'cfg(not(unix))'.dependencies]
17-
s2n-quic-rustls = { version = "=0.23.0", path = "../s2n-quic-rustls" }
17+
s2n-quic-rustls = { version = "=0.24.0", path = "../s2n-quic-rustls" }

quic/s2n-quic-tls/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "s2n-quic-tls"
3-
version = "0.23.0"
3+
version = "0.24.0"
44
description = "Internal crate used by s2n-quic"
55
repository = "https://github.com/aws/s2n-quic"
66
authors = ["AWS s2n"]
@@ -19,8 +19,8 @@ bytes = { version = "1", default-features = false }
1919
errno = "0.3"
2020
libc = "0.2"
2121
s2n-codec = { version = "=0.6.0", path = "../../common/s2n-codec", default-features = false }
22-
s2n-quic-core = { version = "=0.23.0", path = "../s2n-quic-core", default-features = false, features = ["alloc"] }
23-
s2n-quic-crypto = { version = "=0.23.0", path = "../s2n-quic-crypto", default-features = false }
22+
s2n-quic-core = { version = "=0.24.0", path = "../s2n-quic-core", default-features = false, features = ["alloc"] }
23+
s2n-quic-crypto = { version = "=0.24.0", path = "../s2n-quic-crypto", default-features = false }
2424
s2n-tls = { version = "=0.0.29", features = ["quic"] }
2525

2626
[target.'cfg(all(s2n_quic_unstable, s2n_quic_enable_pq_tls))'.dependencies]

quic/s2n-quic-transport/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "s2n-quic-transport"
3-
version = "0.23.0"
3+
version = "0.24.0"
44
description = "Internal crate used by s2n-quic"
55
repository = "https://github.com/aws/s2n-quic"
66
authors = ["AWS s2n"]
@@ -22,7 +22,7 @@ hashbrown = "0.13"
2222
intrusive-collections = "0.9"
2323
once_cell = "1"
2424
s2n-codec = { version = "=0.6.0", path = "../../common/s2n-codec", features = ["bytes"], default-features = false }
25-
s2n-quic-core = { version = "=0.23.0", path = "../s2n-quic-core", features = ["alloc"], default-features = false }
25+
s2n-quic-core = { version = "=0.24.0", path = "../s2n-quic-core", features = ["alloc"], default-features = false }
2626
siphasher = "0.3"
2727
smallvec = { version = "1", default-features = false }
2828

quic/s2n-quic/Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "s2n-quic"
3-
version = "1.23.0"
3+
version = "1.24.0"
44
description = "A Rust implementation of the IETF QUIC protocol"
55
repository = "https://github.com/aws/s2n-quic"
66
authors = ["AWS s2n"]
@@ -58,13 +58,13 @@ hash_hasher = { version = "2", optional = true }
5858
rand = "0.8"
5959
rand_chacha = "0.3"
6060
s2n-codec = { version = "=0.6.0", path = "../../common/s2n-codec" }
61-
s2n-quic-core = { version = "=0.23.0", path = "../s2n-quic-core" }
62-
s2n-quic-crypto = { version = "=0.23.0", path = "../s2n-quic-crypto", optional = true }
63-
s2n-quic-platform = { version = "=0.24.0", path = "../s2n-quic-platform", features = ["tokio-runtime"] }
64-
s2n-quic-rustls = { version = "=0.23.0", path = "../s2n-quic-rustls", optional = true }
65-
s2n-quic-tls = { version = "=0.23.0", path = "../s2n-quic-tls", optional = true }
66-
s2n-quic-tls-default = { version = "=0.23.0", path = "../s2n-quic-tls-default", optional = true }
67-
s2n-quic-transport = { version = "=0.23.0", path = "../s2n-quic-transport" }
61+
s2n-quic-core = { version = "=0.24.0", path = "../s2n-quic-core" }
62+
s2n-quic-crypto = { version = "=0.24.0", path = "../s2n-quic-crypto", optional = true }
63+
s2n-quic-platform = { version = "=0.25.0", path = "../s2n-quic-platform", features = ["tokio-runtime"] }
64+
s2n-quic-rustls = { version = "=0.24.0", path = "../s2n-quic-rustls", optional = true }
65+
s2n-quic-tls = { version = "=0.24.0", path = "../s2n-quic-tls", optional = true }
66+
s2n-quic-tls-default = { version = "=0.24.0", path = "../s2n-quic-tls-default", optional = true }
67+
s2n-quic-transport = { version = "=0.24.0", path = "../s2n-quic-transport" }
6868
tokio = { version = "1", default-features = false }
6969
zerocopy = { version = "0.6", optional = true }
7070
zerocopy-derive = { version = "0.3", optional = true }

tools/xdp/s2n-quic-xdp/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "s2n-quic-xdp"
3-
version = "0.3.0"
3+
version = "0.4.0"
44
description = "Internal crate used by s2n-quic"
55
repository = "https://github.com/aws/s2n-quic"
66
authors = ["AWS s2n"]
@@ -19,7 +19,7 @@ bitflags = "2"
1919
errno = "0.3"
2020
libc = "0.2"
2121
s2n-codec = { version = "=0.6.0", path = "../../../common/s2n-codec" }
22-
s2n-quic-core = { version = "=0.23.0", path = "../../../quic/s2n-quic-core" }
22+
s2n-quic-core = { version = "=0.24.0", path = "../../../quic/s2n-quic-core" }
2323
tokio = { version = "1", features = ["net"], optional = true }
2424

2525
[dev-dependencies]

0 commit comments

Comments
 (0)