Skip to content

Commit 3cf2aa9

Browse files
chore: release 1.30.0 (#2007)
1 parent 5b0d34b commit 3cf2aa9

File tree

10 files changed

+35
-35
lines changed

10 files changed

+35
-35
lines changed

common/s2n-codec/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-codec"
3-
version = "0.7.0"
3+
version = "0.30.0"
44
description = "Internal crate used by s2n-quic"
55
repository = "https://github.com/aws/s2n-quic"
66
authors = ["AWS s2n"]

quic/s2n-quic-core/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-core"
3-
version = "0.28.0"
3+
version = "0.30.0"
44
description = "Internal crate used by s2n-quic"
55
repository = "https://github.com/aws/s2n-quic"
66
authors = ["AWS s2n"]
@@ -34,7 +34,7 @@ insta = { version = ">=1.12", features = ["json"], optional = true }
3434
num-rational = { version = "0.4", default-features = false }
3535
num-traits = { version = "0.2", default-features = false, features = ["libm"] }
3636
pin-project-lite = { version = "0.2" }
37-
s2n-codec = { version = "=0.7.0", path = "../../common/s2n-codec", default-features = false }
37+
s2n-codec = { version = "=0.30.0", path = "../../common/s2n-codec", default-features = false }
3838
subtle = { version = "2", default-features = false }
3939
tracing = { version = "0.1", default-features = false, optional = true }
4040
zerocopy = "0.6"

quic/s2n-quic-crypto/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-crypto"
3-
version = "0.29.0"
3+
version = "0.30.0"
44
description = "Internal crate used by s2n-quic"
55
repository = "https://github.com/aws/s2n-quic"
66
authors = ["AWS s2n"]
@@ -17,8 +17,8 @@ testing = []
1717
[dependencies]
1818
cfg-if = "1"
1919
lazy_static = "1"
20-
s2n-codec = { version = "=0.7.0", path = "../../common/s2n-codec", default-features = false }
21-
s2n-quic-core = { version = "=0.28.0", path = "../s2n-quic-core", default-features = false }
20+
s2n-codec = { version = "=0.30.0", path = "../../common/s2n-codec", default-features = false }
21+
s2n-quic-core = { version = "=0.30.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.29.0"
3+
version = "0.30.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.10", 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.28.0", path = "../s2n-quic-core", default-features = false }
29-
s2n-quic-xdp = { version = "=0.8.0", path = "../../tools/xdp/s2n-quic-xdp", optional = true }
28+
s2n-quic-core = { version = "=0.30.0", path = "../s2n-quic-core", default-features = false }
29+
s2n-quic-xdp = { version = "=0.30.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: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "s2n-quic-rustls"
3-
version = "0.29.0"
3+
version = "0.30.0"
44
description = "Internal crate used by s2n-quic"
55
repository = "https://github.com/aws/s2n-quic"
66
authors = ["AWS s2n"]
@@ -14,9 +14,9 @@ exclude = ["corpus.tar.gz"]
1414
bytes = { version = "1", default-features = false }
1515
rustls = { version = "0.21", features = ["quic"] }
1616
rustls-pemfile = "1"
17-
s2n-codec = { version = "=0.7.0", path = "../../common/s2n-codec", default-features = false, features = ["alloc"] }
18-
s2n-quic-core = { version = "=0.28.0", path = "../s2n-quic-core", default-features = false, features = ["alloc"] }
19-
s2n-quic-crypto = { version = "=0.29.0", path = "../s2n-quic-crypto", default-features = false }
17+
s2n-codec = { version = "=0.30.0", path = "../../common/s2n-codec", default-features = false, features = ["alloc"] }
18+
s2n-quic-core = { version = "=0.30.0", path = "../s2n-quic-core", default-features = false, features = ["alloc"] }
19+
s2n-quic-crypto = { version = "=0.30.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.29.0"
3+
version = "0.30.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.29.0", path = "../s2n-quic-tls" }
14+
s2n-quic-tls = { version = "=0.30.0", path = "../s2n-quic-tls" }
1515

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

quic/s2n-quic-tls/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "s2n-quic-tls"
3-
version = "0.29.0"
3+
version = "0.30.0"
44
description = "Internal crate used by s2n-quic"
55
repository = "https://github.com/aws/s2n-quic"
66
authors = ["AWS s2n"]
@@ -18,9 +18,9 @@ unstable_private_key = []
1818
bytes = { version = "1", default-features = false }
1919
errno = "0.3"
2020
libc = "0.2"
21-
s2n-codec = { version = "=0.7.0", path = "../../common/s2n-codec", default-features = false }
22-
s2n-quic-core = { version = "=0.28.0", path = "../s2n-quic-core", default-features = false, features = ["alloc"] }
23-
s2n-quic-crypto = { version = "=0.29.0", path = "../s2n-quic-crypto", default-features = false }
21+
s2n-codec = { version = "=0.30.0", path = "../../common/s2n-codec", default-features = false }
22+
s2n-quic-core = { version = "=0.30.0", path = "../s2n-quic-core", default-features = false, features = ["alloc"] }
23+
s2n-quic-crypto = { version = "=0.30.0", path = "../s2n-quic-crypto", default-features = false }
2424
s2n-tls = { version = "=0.0.39", features = ["quic"] }
2525

2626
[dev-dependencies]

quic/s2n-quic-transport/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-transport"
3-
version = "0.29.0"
3+
version = "0.30.0"
44
description = "Internal crate used by s2n-quic"
55
repository = "https://github.com/aws/s2n-quic"
66
authors = ["AWS s2n"]
@@ -22,8 +22,8 @@ futures-core = { version = "0.3", default-features = false, features = ["alloc"]
2222
hashbrown = "0.13"
2323
intrusive-collections = "0.9"
2424
once_cell = "1"
25-
s2n-codec = { version = "=0.7.0", path = "../../common/s2n-codec", features = ["bytes"], default-features = false }
26-
s2n-quic-core = { version = "=0.28.0", path = "../s2n-quic-core", features = ["alloc"], default-features = false }
25+
s2n-codec = { version = "=0.30.0", path = "../../common/s2n-codec", features = ["bytes"], default-features = false }
26+
s2n-quic-core = { version = "=0.30.0", path = "../s2n-quic-core", features = ["alloc"], default-features = false }
2727
siphasher = "1.0"
2828
smallvec = { version = "1", default-features = false }
2929

quic/s2n-quic/Cargo.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "s2n-quic"
3-
version = "1.29.0"
3+
version = "1.30.0"
44
description = "A Rust implementation of the IETF QUIC protocol"
55
repository = "https://github.com/aws/s2n-quic"
66
authors = ["AWS s2n"]
@@ -62,14 +62,14 @@ hash_hasher = { version = "2", optional = true }
6262
humansize = { version = "2", optional = true }
6363
rand = "0.8"
6464
rand_chacha = "0.3"
65-
s2n-codec = { version = "=0.7.0", path = "../../common/s2n-codec" }
66-
s2n-quic-core = { version = "=0.28.0", path = "../s2n-quic-core" }
67-
s2n-quic-crypto = { version = "=0.29.0", path = "../s2n-quic-crypto", optional = true }
68-
s2n-quic-platform = { version = "=0.29.0", path = "../s2n-quic-platform", features = ["tokio-runtime"] }
69-
s2n-quic-rustls = { version = "=0.29.0", path = "../s2n-quic-rustls", optional = true }
70-
s2n-quic-tls = { version = "=0.29.0", path = "../s2n-quic-tls", optional = true }
71-
s2n-quic-tls-default = { version = "=0.29.0", path = "../s2n-quic-tls-default", optional = true }
72-
s2n-quic-transport = { version = "=0.29.0", path = "../s2n-quic-transport" }
65+
s2n-codec = { version = "=0.30.0", path = "../../common/s2n-codec" }
66+
s2n-quic-core = { version = "=0.30.0", path = "../s2n-quic-core" }
67+
s2n-quic-crypto = { version = "=0.30.0", path = "../s2n-quic-crypto", optional = true }
68+
s2n-quic-platform = { version = "=0.30.0", path = "../s2n-quic-platform", features = ["tokio-runtime"] }
69+
s2n-quic-rustls = { version = "=0.30.0", path = "../s2n-quic-rustls", optional = true }
70+
s2n-quic-tls = { version = "=0.30.0", path = "../s2n-quic-tls", optional = true }
71+
s2n-quic-tls-default = { version = "=0.30.0", path = "../s2n-quic-tls-default", optional = true }
72+
s2n-quic-transport = { version = "=0.30.0", path = "../s2n-quic-transport" }
7373
tokio = { version = "1", default-features = false }
7474
zerocopy = { version = "0.6", optional = true }
7575
zerocopy-derive = { version = "0.6", optional = true }

tools/xdp/s2n-quic-xdp/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-xdp"
3-
version = "0.8.0"
3+
version = "0.30.0"
44
description = "Internal crate used by s2n-quic"
55
repository = "https://github.com/aws/s2n-quic"
66
authors = ["AWS s2n"]
@@ -18,8 +18,8 @@ aya = { version = "0.11", default-features = false }
1818
bitflags = "2"
1919
errno = "0.3"
2020
libc = "0.2"
21-
s2n-codec = { version = "=0.7.0", path = "../../../common/s2n-codec" }
22-
s2n-quic-core = { version = "=0.28.0", path = "../../../quic/s2n-quic-core" }
21+
s2n-codec = { version = "=0.30.0", path = "../../../common/s2n-codec" }
22+
s2n-quic-core = { version = "=0.30.0", path = "../../../quic/s2n-quic-core" }
2323
tokio = { version = "1", features = ["net"], optional = true }
2424

2525
[dev-dependencies]

0 commit comments

Comments
 (0)