Skip to content

Commit

Permalink
Release new patch versions for 0.11 (#893)
Browse files Browse the repository at this point in the history
* 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]>
  • Loading branch information
calavera authored Jun 14, 2024
1 parent 85d1cb8 commit 6382a85
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 9 deletions.
4 changes: 2 additions & 2 deletions lambda-http/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lambda_http"
version = "0.11.3"
version = "0.11.4"
authors = [
"David Calavera <[email protected]>",
"Harold Sun <[email protected]>",
Expand Down Expand Up @@ -34,7 +34,7 @@ http = { workspace = true }
http-body = { workspace = true }
http-body-util = { workspace = true }
hyper = { workspace = true }
lambda_runtime = { version = "0.11.2", path = "../lambda-runtime" }
lambda_runtime = { version = "0.11.3", path = "../lambda-runtime" }
mime = "0.3"
percent-encoding = "2.2"
pin-project-lite = { workspace = true }
Expand Down
4 changes: 2 additions & 2 deletions lambda-runtime-api-client/src/body/channel.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ pub use sender::Sender;
pub(crate) struct DecodedLength(u64);

impl DecodedLength {
pub(crate) const CLOSE_DELIMITED: DecodedLength = DecodedLength(::std::u64::MAX);
pub(crate) const CHUNKED: DecodedLength = DecodedLength(::std::u64::MAX - 1);
pub(crate) const CLOSE_DELIMITED: DecodedLength = DecodedLength(u64::MAX);
pub(crate) const CHUNKED: DecodedLength = DecodedLength(u64::MAX - 1);
pub(crate) const ZERO: DecodedLength = DecodedLength(0);

pub(crate) fn sub_if(&mut self, amt: u64) {
Expand Down
7 changes: 2 additions & 5 deletions lambda-runtime/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lambda_runtime"
version = "0.11.2"
version = "0.11.3"
authors = [
"David Calavera <[email protected]>",
"Harold Sun <[email protected]>",
Expand All @@ -26,10 +26,7 @@ http = { workspace = true }
http-body = { workspace = true }
http-body-util = { workspace = true }
http-serde = { workspace = true }
hyper = { workspace = true, features = [
"http1",
"client",
] }
hyper = { workspace = true, features = ["http1", "client"] }
hyper-util = { workspace = true, features = [
"client",
"client-legacy",
Expand Down

0 comments on commit 6382a85

Please sign in to comment.