Skip to content

Commit b1c5dfd

Browse files
authored
Release 0.6.1 (#526)
Fixes issues with http paths. Fixes issues with panics in async functions. Fixes issues reporting errors from serde. Add functions to set RequestContext to the RequestExt. Signed-off-by: David Calavera <[email protected]> Signed-off-by: David Calavera <[email protected]>
1 parent 1cacdd8 commit b1c5dfd

File tree

4 files changed

+18
-6
lines changed

4 files changed

+18
-6
lines changed

lambda-extension/Cargo.toml

+4-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,10 @@
22
name = "lambda-extension"
33
version = "0.6.0"
44
edition = "2021"
5-
authors = ["David Calavera <[email protected]>"]
5+
authors = [
6+
"David Calavera <[email protected]>",
7+
"Harold Sun <[email protected]>"
8+
]
69
description = "AWS Lambda Extension API"
710
license = "Apache-2.0"
811
repository = "https://github.com/awslabs/aws-lambda-rust-runtime"

lambda-http/Cargo.toml

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
[package]
22
name = "lambda_http"
3-
version = "0.6.0"
4-
authors = ["Doug Tangren"]
3+
version = "0.6.1"
4+
authors = [
5+
"David Calavera <[email protected]>",
6+
"Harold Sun <[email protected]>"
7+
]
58
edition = "2021"
69
description = "Application Load Balancer and API Gateway event types for AWS Lambda"
710
keywords = ["AWS", "Lambda", "APIGateway", "ALB", "API"]

lambda-runtime-api-client/Cargo.toml

+4-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,10 @@
22
name = "lambda_runtime_api_client"
33
version = "0.6.0"
44
edition = "2021"
5-
authors = ["David Calavera <[email protected]>"]
5+
authors = [
6+
"David Calavera <[email protected]>",
7+
"Harold Sun <[email protected]>"
8+
]
69
description = "AWS Lambda Runtime interaction API"
710
license = "Apache-2.0"
811
repository = "https://github.com/awslabs/aws-lambda-rust-runtime"

lambda-runtime/Cargo.toml

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
[package]
22
name = "lambda_runtime"
3-
version = "0.6.0"
4-
authors = ["David Barsky <[email protected]>"]
3+
version = "0.6.1"
4+
authors = [
5+
"David Calavera <[email protected]>",
6+
"Harold Sun <[email protected]>"
7+
]
58
description = "AWS Lambda Runtime"
69
edition = "2021"
710
license = "Apache-2.0"

0 commit comments

Comments
 (0)