Skip to content

Commit 336e552

Browse files
authored
Bump crate versions to 0.6.0 (#502)
Signed-off-by: David Calavera <[email protected]>
1 parent bb24199 commit 336e552

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

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.5.0"
3+
version = "0.6.0"
44
edition = "2021"
55
authors = ["David Calavera <[email protected]>"]
66
description = "AWS Lambda Extension API"
@@ -16,7 +16,7 @@ bytes = "1.0"
1616
chrono = { version = "0.4", features = ["serde"] }
1717
http = "0.2"
1818
hyper = { version = "0.14", features = ["http1", "client", "server", "stream", "runtime"] }
19-
lambda_runtime_api_client = { version = "0.5", path = "../lambda-runtime-api-client" }
19+
lambda_runtime_api_client = { version = "0.6", path = "../lambda-runtime-api-client" }
2020
serde = { version = "1", features = ["derive"] }
2121
serde_json = "^1"
2222
tracing = { version = "0.1", features = ["log"] }

lambda-http/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lambda_http"
3-
version = "0.5.2"
3+
version = "0.6.0"
44
authors = ["Doug Tangren"]
55
edition = "2021"
66
description = "Application Load Balancer and API Gateway event types for AWS Lambda"
@@ -25,7 +25,7 @@ bytes = "1"
2525
http = "0.2"
2626
http-body = "0.4"
2727
hyper = "0.14"
28-
lambda_runtime = { path = "../lambda-runtime", version = "0.5" }
28+
lambda_runtime = { path = "../lambda-runtime", version = "0.6" }
2929
serde = { version = "^1", features = ["derive"] }
3030
serde_json = "^1"
3131
serde_urlencoded = "0.7.0"

lambda-integration-tests/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ readme = "../README.md"
1313
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1414

1515
[dependencies]
16-
lambda_http = { path = "../lambda-http", version = "0.5" }
17-
lambda_runtime = { path = "../lambda-runtime", version = "0.5" }
18-
lambda-extension = { path = "../lambda-extension", version = "0.5" }
16+
lambda_http = { path = "../lambda-http", version = "0.6" }
17+
lambda_runtime = { path = "../lambda-runtime", version = "0.6" }
18+
lambda-extension = { path = "../lambda-extension", version = "0.6" }
1919
serde = { version = "1", features = ["derive"] }
2020
tokio = { version = "1", features = ["full"] }
2121
tracing = { version = "0.1", features = ["log"] }

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.5.0"
3+
version = "0.6.0"
44
edition = "2021"
55
authors = ["David Calavera <[email protected]>"]
66
description = "AWS Lambda Runtime interaction API"

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.5.1"
3+
version = "0.6.0"
44
authors = ["David Barsky <[email protected]>"]
55
description = "AWS Lambda Runtime"
66
edition = "2021"
@@ -26,5 +26,5 @@ async-stream = "0.3"
2626
tracing = { version = "0.1", features = ["log"] }
2727
tower = { version = "0.4", features = ["util"] }
2828
tokio-stream = "0.1.2"
29-
lambda_runtime_api_client = { version = "0.5", path = "../lambda-runtime-api-client" }
29+
lambda_runtime_api_client = { version = "0.6", path = "../lambda-runtime-api-client" }
3030

0 commit comments

Comments
 (0)