Skip to content

Commit 6382a85

Browse files
authored
Release new patch versions for 0.11 (#893)
* Release new patch versions for 0.11 Signed-off-by: David Calavera <[email protected]> * Fix clippy errors from Rust 1.79.0 Signed-off-by: David Calavera <[email protected]> --------- Signed-off-by: David Calavera <[email protected]>
1 parent 85d1cb8 commit 6382a85

File tree

3 files changed

+6
-9
lines changed

3 files changed

+6
-9
lines changed

lambda-http/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lambda_http"
3-
version = "0.11.3"
3+
version = "0.11.4"
44
authors = [
55
"David Calavera <[email protected]>",
66
"Harold Sun <[email protected]>",
@@ -34,7 +34,7 @@ http = { workspace = true }
3434
http-body = { workspace = true }
3535
http-body-util = { workspace = true }
3636
hyper = { workspace = true }
37-
lambda_runtime = { version = "0.11.2", path = "../lambda-runtime" }
37+
lambda_runtime = { version = "0.11.3", path = "../lambda-runtime" }
3838
mime = "0.3"
3939
percent-encoding = "2.2"
4040
pin-project-lite = { workspace = true }

lambda-runtime-api-client/src/body/channel.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ pub use sender::Sender;
2020
pub(crate) struct DecodedLength(u64);
2121

2222
impl DecodedLength {
23-
pub(crate) const CLOSE_DELIMITED: DecodedLength = DecodedLength(::std::u64::MAX);
24-
pub(crate) const CHUNKED: DecodedLength = DecodedLength(::std::u64::MAX - 1);
23+
pub(crate) const CLOSE_DELIMITED: DecodedLength = DecodedLength(u64::MAX);
24+
pub(crate) const CHUNKED: DecodedLength = DecodedLength(u64::MAX - 1);
2525
pub(crate) const ZERO: DecodedLength = DecodedLength(0);
2626

2727
pub(crate) fn sub_if(&mut self, amt: u64) {

lambda-runtime/Cargo.toml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lambda_runtime"
3-
version = "0.11.2"
3+
version = "0.11.3"
44
authors = [
55
"David Calavera <[email protected]>",
66
"Harold Sun <[email protected]>",
@@ -26,10 +26,7 @@ http = { workspace = true }
2626
http-body = { workspace = true }
2727
http-body-util = { workspace = true }
2828
http-serde = { workspace = true }
29-
hyper = { workspace = true, features = [
30-
"http1",
31-
"client",
32-
] }
29+
hyper = { workspace = true, features = ["http1", "client"] }
3330
hyper-util = { workspace = true, features = [
3431
"client",
3532
"client-legacy",

0 commit comments

Comments
 (0)