Skip to content

Commit d9cf7e8

Browse files
authored
chore: bump version to 0.5 (#420)
1 parent 93af9cb commit d9cf7e8

File tree

5 files changed

+12
-11
lines changed

5 files changed

+12
-11
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.1.0"
3+
version = "0.5.0"
44
edition = "2018"
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.4", path = "../lambda-runtime-api-client" }
19+
lambda_runtime_api_client = { version = "0.5", 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.4.1"
3+
version = "0.5.0"
44
authors = ["Doug Tangren"]
55
edition = "2018"
66
description = "Application Load Balancer and API Gateway event types for AWS Lambda"
@@ -21,7 +21,7 @@ base64 = "0.13.0"
2121
bytes = "1"
2222
http = "0.2"
2323
http-body = "0.4"
24-
lambda_runtime = { path = "../lambda-runtime", version = "0.4.1" }
24+
lambda_runtime = { path = "../lambda-runtime", version = "0.5" }
2525
serde = { version = "^1", features = ["derive"] }
2626
serde_json = "^1"
2727
serde_urlencoded = "0.7.0"

lambda-integration-tests/Cargo.toml

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
[package]
22
name = "lambda_integration_tests"
3-
version = "0.4.1"
3+
version = "0.5.0"
4+
authors = ["Nicolas Moutschen <[email protected]>"]
45
edition = "2018"
56
description = "AWS Lambda Runtime integration tests"
67
license = "Apache-2.0"
@@ -12,9 +13,9 @@ readme = "../README.md"
1213
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1314

1415
[dependencies]
15-
lambda_http = { path = "../lambda-http", version = "0.4.1" }
16-
lambda_runtime = { path = "../lambda-runtime", version = "0.4.1" }
17-
lambda_extension = { path = "../lambda-extension", version = "0.1.0" }
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" }
1819
serde = { version = "1", features = ["derive"] }
1920
tokio = { version = "1", features = ["full"] }
2021
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.4.1"
3+
version = "0.5.0"
44
edition = "2018"
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.4.1"
3+
version = "0.5.0"
44
authors = ["David Barsky <[email protected]>"]
55
description = "AWS Lambda Runtime"
66
edition = "2018"
@@ -25,7 +25,7 @@ async-stream = "0.3"
2525
tracing = { version = "0.1", features = ["log"] }
2626
tower = { version = "0.4", features = ["util"] }
2727
tokio-stream = "0.1.2"
28-
lambda_runtime_api_client = { version = "0.4", path = "../lambda-runtime-api-client" }
28+
lambda_runtime_api_client = { version = "0.5", path = "../lambda-runtime-api-client" }
2929

3030
[dev-dependencies]
3131
tracing-subscriber = "0.3"

0 commit comments

Comments
 (0)