Skip to content

Commit

Permalink
chore(bindings): release 0.3.2 (#4760)
Browse files Browse the repository at this point in the history
  • Loading branch information
dougch authored Sep 10, 2024
1 parent 075261e commit 2b9e590
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions bindings/rust/s2n-tls-hyper/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ publish = false
default = []

[dependencies]
s2n-tls = { version = "=0.3.1", path = "../s2n-tls" }
s2n-tls-tokio = { version = "=0.3.1", path = "../s2n-tls-tokio" }
s2n-tls = { version = "=0.3.2", path = "../s2n-tls" }
s2n-tls-tokio = { version = "=0.3.2", path = "../s2n-tls-tokio" }
hyper = { version = "1" }
hyper-util = { version = "0.1", features = ["client-legacy", "tokio", "http1"] }
tower-service = { version = "0.3" }
Expand Down
2 changes: 1 addition & 1 deletion bindings/rust/s2n-tls-sys/templates/Cargo.template
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "s2n-tls-sys"
description = "A C99 implementation of the TLS/SSL protocols"
version = "0.3.1"
version = "0.3.2"
authors = ["AWS s2n"]
edition = "2021"
rust-version = "1.63.0"
Expand Down
4 changes: 2 additions & 2 deletions bindings/rust/s2n-tls-tokio/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "s2n-tls-tokio"
description = "An implementation of TLS streams for Tokio built on top of s2n-tls"
version = "0.3.1"
version = "0.3.2"
authors = ["AWS s2n"]
edition = "2021"
rust-version = "1.63.0"
Expand All @@ -15,7 +15,7 @@ default = []
errno = { version = "0.3" }
libc = { version = "0.2" }
pin-project-lite = { version = "0.2" }
s2n-tls = { version = "=0.3.1", path = "../s2n-tls" }
s2n-tls = { version = "=0.3.2", path = "../s2n-tls" }
tokio = { version = "1", features = ["net", "time"] }

[dev-dependencies]
Expand Down
4 changes: 2 additions & 2 deletions bindings/rust/s2n-tls/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "s2n-tls"
description = "A C99 implementation of the TLS/SSL protocols"
version = "0.3.1"
version = "0.3.2"
authors = ["AWS s2n"]
edition = "2021"
rust-version = "1.63.0"
Expand All @@ -21,7 +21,7 @@ unstable-testing = []
[dependencies]
errno = { version = "0.3" }
libc = "0.2"
s2n-tls-sys = { version = "=0.3.1", path = "../s2n-tls-sys", features = ["internal"] }
s2n-tls-sys = { version = "=0.3.2", path = "../s2n-tls-sys", features = ["internal"] }
pin-project-lite = "0.2"
hex = "0.4"

Expand Down
4 changes: 2 additions & 2 deletions tests/regression/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ version = "0.1.0"
edition = "2021"

[dependencies]
s2n-tls = { version = "=0.3.1", path = "../../bindings/rust/s2n-tls", features = ["unstable-testing"] }
s2n-tls-sys = { version = "=0.3.1", path = "../../bindings/rust/s2n-tls-sys" }
s2n-tls = { version = "=0.3", path = "../../bindings/rust/s2n-tls", features = ["unstable-testing"] }
s2n-tls-sys = { version = "=0.3", path = "../../bindings/rust/s2n-tls-sys" }
bytes = { version = "1", optional = true }
errno = { version = "0.3" }
libc = "0.2"
Expand Down

0 comments on commit 2b9e590

Please sign in to comment.