Skip to content

Commit

Permalink
Release new versions compatible with Hyper 1 (#756)
Browse files Browse the repository at this point in the history
Signed-off-by: David Calavera <[email protected]>
  • Loading branch information
calavera authored Dec 20, 2023
1 parent ead7f37 commit ab3b809
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion lambda-events/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "aws_lambda_events"
version = "0.12.1"
version = "0.13.0"
description = "AWS Lambda event definitions"
authors = [
"Christian Legnitto <[email protected]>",
Expand Down
4 changes: 2 additions & 2 deletions lambda-extension/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lambda-extension"
version = "0.8.2"
version = "0.9.0"
edition = "2021"
authors = [
"David Calavera <[email protected]>",
Expand All @@ -21,7 +21,7 @@ http = { workspace = true }
http-body-util = { workspace = true }
hyper = { workspace = true, features = ["http1", "client", "server"] }
hyper-util = { workspace = true }
lambda_runtime_api_client = { version = "0.8", path = "../lambda-runtime-api-client" }
lambda_runtime_api_client = { version = "0.9", path = "../lambda-runtime-api-client" }
serde = { version = "1", features = ["derive"] }
serde_json = "^1"
tracing = { version = "0.1", features = ["log"] }
Expand Down
8 changes: 4 additions & 4 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.8.3"
version = "0.9.0"
authors = [
"David Calavera <[email protected]>",
"Harold Sun <[email protected]>",
Expand Down Expand Up @@ -32,7 +32,7 @@ http = { workspace = true }
http-body = { workspace = true }
http-body-util = { workspace = true }
hyper = { workspace = true }
lambda_runtime = { path = "../lambda-runtime", version = "0.8.3" }
lambda_runtime = { version = "0.9", path = "../lambda-runtime" }
mime = "0.3"
percent-encoding = "2.2"
pin-project-lite = { workspace = true }
Expand All @@ -44,12 +44,12 @@ url = "2.2"

[dependencies.aws_lambda_events]
path = "../lambda-events"
version = "0.12.0"
version = "0.13"
default-features = false
features = ["alb", "apigw"]

[dev-dependencies]
lambda_runtime_api_client = { version = "0.8", path = "../lambda-runtime-api-client" }
lambda_runtime_api_client = { version = "0.9", path = "../lambda-runtime-api-client" }
log = "^0.4"
maplit = "1.0"
tokio = { version = "1.0", features = ["macros"] }
2 changes: 1 addition & 1 deletion lambda-runtime-api-client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lambda_runtime_api_client"
version = "0.8.0"
version = "0.9.0"
edition = "2021"
authors = [
"David Calavera <[email protected]>",
Expand Down
4 changes: 2 additions & 2 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.8.3"
version = "0.9.0"
authors = [
"David Calavera <[email protected]>",
"Harold Sun <[email protected]>",
Expand Down Expand Up @@ -36,7 +36,7 @@ hyper-util = { workspace = true, features = [
"http1",
"tokio",
] }
lambda_runtime_api_client = { version = "0.8", path = "../lambda-runtime-api-client" }
lambda_runtime_api_client = { version = "0.9", path = "../lambda-runtime-api-client" }
serde = { version = "1", features = ["derive", "rc"] }
serde_json = "^1"
serde_path_to_error = "0.1.11"
Expand Down

0 comments on commit ab3b809

Please sign in to comment.