diff --git a/lambda-events/Cargo.toml b/lambda-events/Cargo.toml index ca3cf22e..ae2d948a 100644 --- a/lambda-events/Cargo.toml +++ b/lambda-events/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "aws_lambda_events" -version = "1.0.2" +version = "1.0.3" rust-version = "1.84.0" description = "AWS Lambda event definitions" authors = [ @@ -131,4 +131,4 @@ catch-all-fields = [] all-features = true [dev-dependencies] -lambda_runtime = { path = "../lambda-runtime" } +lambda_runtime = { version = "1.1.0-rc1", path = "../lambda-runtime" } diff --git a/lambda-extension/Cargo.toml b/lambda-extension/Cargo.toml index 6ae9c378..9bb6a09d 100644 --- a/lambda-extension/Cargo.toml +++ b/lambda-extension/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lambda-extension" -version = "1.0.1" +version = "1.0.2" edition = "2021" rust-version = "1.84.0" authors = [ @@ -25,7 +25,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 = "1.0", path = "../lambda-runtime-api-client" } +lambda_runtime_api_client = { version = "1.0.2", path = "../lambda-runtime-api-client" } serde = { version = "1", features = ["derive"] } serde_json = "^1" tokio = { version = "1.0", features = [ diff --git a/lambda-http/Cargo.toml b/lambda-http/Cargo.toml index 3bcf56b6..69b8e095 100644 --- a/lambda-http/Cargo.toml +++ b/lambda-http/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lambda_http" -version = "1.0.2" +version = "1.1.0-rc1" authors = [ "David Calavera ", "Harold Sun ", @@ -39,7 +39,7 @@ http = { workspace = true } http-body = { workspace = true } http-body-util = { workspace = true } hyper = { workspace = true } -lambda_runtime = { version = "1.0", path = "../lambda-runtime" } +lambda_runtime = { version = "1.1.0-rc1", path = "../lambda-runtime" } mime = "0.3" percent-encoding = "2.2" pin-project-lite = { workspace = true } @@ -58,7 +58,7 @@ features = ["alb", "apigw"] [dev-dependencies] axum-core = "0.5.4" axum-extra = { version = "0.10.2", features = ["query"] } -lambda_runtime_api_client = { version = "1.0", path = "../lambda-runtime-api-client" } +lambda_runtime_api_client = { version = "1.0.2", path = "../lambda-runtime-api-client" } log = "^0.4" maplit = "1.0" tokio = { version = "1.0", features = ["macros"] } diff --git a/lambda-runtime-api-client/Cargo.toml b/lambda-runtime-api-client/Cargo.toml index aacecb90..41821a44 100644 --- a/lambda-runtime-api-client/Cargo.toml +++ b/lambda-runtime-api-client/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lambda_runtime_api_client" -version = "1.0.1" +version = "1.0.2" edition = "2021" rust-version = "1.84.0" authors = [ diff --git a/lambda-runtime/Cargo.toml b/lambda-runtime/Cargo.toml index 037849b1..e829a72a 100644 --- a/lambda-runtime/Cargo.toml +++ b/lambda-runtime/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lambda_runtime" -version = "1.0.2" +version = "1.1.0-rc1" authors = [ "David Calavera ", "Harold Sun ", @@ -39,7 +39,7 @@ http-body-util = { workspace = true } http-serde = { workspace = true } hyper = { workspace = true, features = ["http1", "client"] } lambda-extension = { version = "1.0", path = "../lambda-extension", default-features = false, optional = true } -lambda_runtime_api_client = { version = "1.0", path = "../lambda-runtime-api-client", default-features = false } +lambda_runtime_api_client = { version = "1.0.2", path = "../lambda-runtime-api-client", default-features = false } miette = { version = "7.2.0", optional = true } opentelemetry-semantic-conventions = { version = "0.31", optional = true, features = ["semconv_experimental"] } pin-project = "1"