Skip to content

Commit e0a3827

Browse files
authored
Release version 0.11.0 (#847)
- Release the new layering system for the runtime. Signed-off-by: David Calavera <david.calavera@gmail.com>
1 parent ddd22a3 commit e0a3827

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

lambda-extension/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ http = { workspace = true }
2525
http-body-util = { workspace = true }
2626
hyper = { workspace = true, features = ["http1", "client", "server"] }
2727
hyper-util = { workspace = true }
28-
lambda_runtime_api_client = { version = "0.10", path = "../lambda-runtime-api-client" }
28+
lambda_runtime_api_client = { version = "0.11", path = "../lambda-runtime-api-client" }
2929
serde = { version = "1", features = ["derive"] }
3030
serde_json = "^1"
3131
tokio = { version = "1.0", features = [

lambda-http/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lambda_http"
3-
version = "0.10.0"
3+
version = "0.11.0"
44
authors = [
55
"David Calavera <dcalaver@amazon.com>",
66
"Harold Sun <sunhua@amazon.com>",
@@ -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.10.0", path = "../lambda-runtime" }
37+
lambda_runtime = { version = "0.11.0", path = "../lambda-runtime" }
3838
mime = "0.3"
3939
percent-encoding = "2.2"
4040
pin-project-lite = { workspace = true }
@@ -53,7 +53,7 @@ features = ["alb", "apigw"]
5353
[dev-dependencies]
5454
axum-core = "0.4.3"
5555
axum-extra = { version = "0.9.2", features = ["query"] }
56-
lambda_runtime_api_client = { version = "0.10", path = "../lambda-runtime-api-client" }
56+
lambda_runtime_api_client = { version = "0.11", path = "../lambda-runtime-api-client" }
5757
log = "^0.4"
5858
maplit = "1.0"
5959
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.10.0"
3+
version = "0.11.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.10.0"
3+
version = "0.11.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.10", path = "../lambda-runtime-api-client" }
39+
lambda_runtime_api_client = { version = "0.11", path = "../lambda-runtime-api-client" }
4040
pin-project = "1"
4141
serde = { version = "1", features = ["derive", "rc"] }
4242
serde_json = "^1"

0 commit comments

Comments
 (0)