Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: release 1.17.1 #1677

Merged
merged 1 commit into from
Mar 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.18.0"
version = "0.18.1"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Since these are unstable crates anyway should we just bump the minor version? In the next release we would be bumping to 0.19.0 anyway.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I like the idea of trying to stick to semver for all of the crates, because I think that's easier to reason about.

E.g. "we follow semver for all of the crates that we publish" rather than "we follow semver for the primary crate that we publish and but not for published, non-primary crates"

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Although I admit that figuring out whether things should be minor/patch bumps is currently rather tedious, the solution I would push for is automating version bumps through the conventional commit parsing.

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.18.0"
version = "0.18.1"
description = "Internal crate used by s2n-quic"
repository = "https://github.com/aws/s2n-quic"
authors = ["AWS s2n"]
Expand All @@ -19,7 +19,7 @@ cfg-if = "1"
lazy_static = "1"
ring = { version = "0.16", default-features = false }
s2n-codec = { version = "=0.4.0", path = "../../common/s2n-codec", default-features = false }
s2n-quic-core = { version = "=0.18.0", path = "../s2n-quic-core", default-features = false }
s2n-quic-core = { version = "=0.18.1", path = "../s2n-quic-core", default-features = false }
zeroize = { version = "1.5", 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.18.0"
version = "0.18.1"
description = "Internal crate used by s2n-quic"
repository = "https://github.com/aws/s2n-quic"
authors = ["AWS s2n"]
Expand All @@ -26,7 +26,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.18.0", path = "../s2n-quic-core", default-features = false }
s2n-quic-core = { version = "=0.18.1", 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 }
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.18.0"
version = "0.18.1"
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.20", features = ["quic"] }
rustls-pemfile = "1"
s2n-codec = { version = "=0.4.0", path = "../../common/s2n-codec", default-features = false }
s2n-quic-core = { version = "=0.18.0", path = "../s2n-quic-core", default-features = false, features = ["alloc"] }
s2n-quic-crypto = { version = "=0.18.0", path = "../s2n-quic-crypto", default-features = false }
s2n-quic-core = { version = "=0.18.1", path = "../s2n-quic-core", default-features = false, features = ["alloc"] }
s2n-quic-crypto = { version = "=0.18.1", 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.18.0"
version = "0.18.1"
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.18.0", path = "../s2n-quic-tls" }
s2n-quic-tls = { version = "=0.18.1", path = "../s2n-quic-tls" }

[target.'cfg(not(unix))'.dependencies]
s2n-quic-rustls = { version = "=0.18.0", path = "../s2n-quic-rustls" }
s2n-quic-rustls = { version = "=0.18.1", 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.18.0"
version = "0.18.1"
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.2"
libc = "0.2"
s2n-codec = { version = "=0.4.0", path = "../../common/s2n-codec", default-features = false }
s2n-quic-core = { version = "=0.18.0", path = "../s2n-quic-core", default-features = false, features = ["alloc"] }
s2n-quic-crypto = { version = "=0.18.0", path = "../s2n-quic-crypto", default-features = false }
s2n-quic-core = { version = "=0.18.1", path = "../s2n-quic-core", default-features = false, features = ["alloc"] }
s2n-quic-crypto = { version = "=0.18.1", path = "../s2n-quic-crypto", default-features = false }
s2n-tls = { version = "=0.0.26", features = ["quic"] }

[target.'cfg(all(s2n_quic_unstable, s2n_quic_enable_pq_tls))'.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.18.0"
version = "0.18.1"
description = "Internal crate used by s2n-quic"
repository = "https://github.com/aws/s2n-quic"
authors = ["AWS s2n"]
Expand All @@ -22,7 +22,7 @@ hashbrown = "0.12"
intrusive-collections = "0.9"
once_cell = "1"
s2n-codec = { version = "=0.4.0", path = "../../common/s2n-codec", features = ["bytes"], default-features = false }
s2n-quic-core = { version = "=0.18.0", path = "../s2n-quic-core", features = ["alloc"], default-features = false }
s2n-quic-core = { version = "=0.18.1", 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.17.0"
version = "1.17.1"
description = "A Rust implementation of the IETF QUIC protocol"
repository = "https://github.com/aws/s2n-quic"
authors = ["AWS s2n"]
Expand Down Expand Up @@ -55,12 +55,12 @@ rand = "0.8"
rand_chacha = "0.3"
ring = { version = "0.16", optional = true, default-features = false }
s2n-codec = { version = "=0.4.0", path = "../../common/s2n-codec" }
s2n-quic-core = { version = "=0.18.0", path = "../s2n-quic-core" }
s2n-quic-platform = { version = "=0.18.0", path = "../s2n-quic-platform", features = ["tokio-runtime"] }
s2n-quic-rustls = { version = "=0.18.0", path = "../s2n-quic-rustls", optional = true }
s2n-quic-tls = { version = "=0.18.0", path = "../s2n-quic-tls", optional = true }
s2n-quic-tls-default = { version = "=0.18.0", path = "../s2n-quic-tls-default", optional = true }
s2n-quic-transport = { version = "=0.18.0", path = "../s2n-quic-transport" }
s2n-quic-core = { version = "=0.18.1", path = "../s2n-quic-core" }
s2n-quic-platform = { version = "=0.18.1", path = "../s2n-quic-platform", features = ["tokio-runtime"] }
s2n-quic-rustls = { version = "=0.18.1", path = "../s2n-quic-rustls", optional = true }
s2n-quic-tls = { version = "=0.18.1", path = "../s2n-quic-tls", optional = true }
s2n-quic-tls-default = { version = "=0.18.1", path = "../s2n-quic-tls-default", optional = true }
s2n-quic-transport = { version = "=0.18.1", 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