Skip to content

Commit ea3e878

Browse files
authored
chore: release 1.29.0 (#1982)
1 parent e3eb0d1 commit ea3e878

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.27.1"
3+
version = "0.28.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.28.0"
3+
version = "0.29.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.7.0", path = "../../common/s2n-codec", default-features = false }
21-
s2n-quic-core = { version = "=0.27.1", path = "../s2n-quic-core", default-features = false }
21+
s2n-quic-core = { version = "=0.28.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.28.1"
3+
version = "0.29.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.27.1", path = "../s2n-quic-core", default-features = false }
29-
s2n-quic-xdp = { version = "=0.7.1", path = "../../tools/xdp/s2n-quic-xdp", 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 }
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.28.0"
3+
version = "0.29.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.21", features = ["quic"] }
1616
rustls-pemfile = "1"
1717
s2n-codec = { version = "=0.7.0", path = "../../common/s2n-codec", default-features = false, features = ["alloc"] }
18-
s2n-quic-core = { version = "=0.27.1", path = "../s2n-quic-core", default-features = false, features = ["alloc"] }
19-
s2n-quic-crypto = { version = "=0.28.0", path = "../s2n-quic-crypto", default-features = false }
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 }
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.28.0"
3+
version = "0.29.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.28.0", path = "../s2n-quic-tls" }
14+
s2n-quic-tls = { version = "=0.29.0", path = "../s2n-quic-tls" }
1515

1616
[target.'cfg(not(unix))'.dependencies]
17-
s2n-quic-rustls = { version = "=0.28.0", path = "../s2n-quic-rustls" }
17+
s2n-quic-rustls = { version = "=0.29.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.28.0"
3+
version = "0.29.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.7.0", path = "../../common/s2n-codec", default-features = false }
22-
s2n-quic-core = { version = "=0.27.1", path = "../s2n-quic-core", default-features = false, features = ["alloc"] }
23-
s2n-quic-crypto = { version = "=0.28.0", path = "../s2n-quic-crypto", 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 }
2424
s2n-tls = { version = "=0.0.36", features = ["quic"] }
2525

2626
[dev-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.28.0"
3+
version = "0.29.0"
44
description = "Internal crate used by s2n-quic"
55
repository = "https://github.com/aws/s2n-quic"
66
authors = ["AWS s2n"]
@@ -23,7 +23,7 @@ hashbrown = "0.13"
2323
intrusive-collections = "0.9"
2424
once_cell = "1"
2525
s2n-codec = { version = "=0.7.0", path = "../../common/s2n-codec", features = ["bytes"], default-features = false }
26-
s2n-quic-core = { version = "=0.27.1", path = "../s2n-quic-core", features = ["alloc"], default-features = false }
26+
s2n-quic-core = { version = "=0.28.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: 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.28.0"
3+
version = "1.29.0"
44
description = "A Rust implementation of the IETF QUIC protocol"
55
repository = "https://github.com/aws/s2n-quic"
66
authors = ["AWS s2n"]
@@ -63,13 +63,13 @@ humansize = { version = "2", optional = true }
6363
rand = "0.8"
6464
rand_chacha = "0.3"
6565
s2n-codec = { version = "=0.7.0", path = "../../common/s2n-codec" }
66-
s2n-quic-core = { version = "=0.27.1", path = "../s2n-quic-core" }
67-
s2n-quic-crypto = { version = "=0.28.0", path = "../s2n-quic-crypto", optional = true }
68-
s2n-quic-platform = { version = "=0.28.1", path = "../s2n-quic-platform", features = ["tokio-runtime"] }
69-
s2n-quic-rustls = { version = "=0.28.0", path = "../s2n-quic-rustls", optional = true }
70-
s2n-quic-tls = { version = "=0.28.0", path = "../s2n-quic-tls", optional = true }
71-
s2n-quic-tls-default = { version = "=0.28.0", path = "../s2n-quic-tls-default", optional = true }
72-
s2n-quic-transport = { version = "=0.28.0", path = "../s2n-quic-transport" }
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" }
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: 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.7.1"
3+
version = "0.8.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.7.0", path = "../../../common/s2n-codec" }
22-
s2n-quic-core = { version = "=0.27.1", path = "../../../quic/s2n-quic-core" }
22+
s2n-quic-core = { version = "=0.28.0", path = "../../../quic/s2n-quic-core" }
2323
tokio = { version = "1", features = ["net"], optional = true }
2424

2525
[dev-dependencies]

0 commit comments

Comments
 (0)