Skip to content

Commit ab3b809

Browse files
authored
Release new versions compatible with Hyper 1 (#756)
Signed-off-by: David Calavera <david.calavera@gmail.com>
1 parent ead7f37 commit ab3b809

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

lambda-events/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "aws_lambda_events"
3-
version = "0.12.1"
3+
version = "0.13.0"
44
description = "AWS Lambda event definitions"
55
authors = [
66
"Christian Legnitto <christian@legnitto.com>",

lambda-extension/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lambda-extension"
3-
version = "0.8.2"
3+
version = "0.9.0"
44
edition = "2021"
55
authors = [
66
"David Calavera <dcalaver@amazon.com>",
@@ -21,7 +21,7 @@ http = { workspace = true }
2121
http-body-util = { workspace = true }
2222
hyper = { workspace = true, features = ["http1", "client", "server"] }
2323
hyper-util = { workspace = true }
24-
lambda_runtime_api_client = { version = "0.8", path = "../lambda-runtime-api-client" }
24+
lambda_runtime_api_client = { version = "0.9", path = "../lambda-runtime-api-client" }
2525
serde = { version = "1", features = ["derive"] }
2626
serde_json = "^1"
2727
tracing = { version = "0.1", features = ["log"] }

lambda-http/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lambda_http"
3-
version = "0.8.3"
3+
version = "0.9.0"
44
authors = [
55
"David Calavera <dcalaver@amazon.com>",
66
"Harold Sun <sunhua@amazon.com>",
@@ -32,7 +32,7 @@ http = { workspace = true }
3232
http-body = { workspace = true }
3333
http-body-util = { workspace = true }
3434
hyper = { workspace = true }
35-
lambda_runtime = { path = "../lambda-runtime", version = "0.8.3" }
35+
lambda_runtime = { version = "0.9", path = "../lambda-runtime" }
3636
mime = "0.3"
3737
percent-encoding = "2.2"
3838
pin-project-lite = { workspace = true }
@@ -44,12 +44,12 @@ url = "2.2"
4444

4545
[dependencies.aws_lambda_events]
4646
path = "../lambda-events"
47-
version = "0.12.0"
47+
version = "0.13"
4848
default-features = false
4949
features = ["alb", "apigw"]
5050

5151
[dev-dependencies]
52-
lambda_runtime_api_client = { version = "0.8", path = "../lambda-runtime-api-client" }
52+
lambda_runtime_api_client = { version = "0.9", path = "../lambda-runtime-api-client" }
5353
log = "^0.4"
5454
maplit = "1.0"
5555
tokio = { version = "1.0", features = ["macros"] }

lambda-runtime-api-client/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lambda_runtime_api_client"
3-
version = "0.8.0"
3+
version = "0.9.0"
44
edition = "2021"
55
authors = [
66
"David Calavera <dcalaver@amazon.com>",

lambda-runtime/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lambda_runtime"
3-
version = "0.8.3"
3+
version = "0.9.0"
44
authors = [
55
"David Calavera <dcalaver@amazon.com>",
66
"Harold Sun <sunhua@amazon.com>",
@@ -36,7 +36,7 @@ hyper-util = { workspace = true, features = [
3636
"http1",
3737
"tokio",
3838
] }
39-
lambda_runtime_api_client = { version = "0.8", path = "../lambda-runtime-api-client" }
39+
lambda_runtime_api_client = { version = "0.9", path = "../lambda-runtime-api-client" }
4040
serde = { version = "1", features = ["derive", "rc"] }
4141
serde_json = "^1"
4242
serde_path_to_error = "0.1.11"

0 commit comments

Comments
 (0)