From c9694ef72de198c11a5bd6ca41aa67225bd4d1f8 Mon Sep 17 00:00:00 2001 From: Davide Melfi Date: Thu, 16 Apr 2026 07:43:57 +0100 Subject: [PATCH] chore: release v1.1.3 --- lambda-events/CHANGELOG.md | 6 ++++++ lambda-events/Cargo.toml | 2 +- lambda-http/CHANGELOG.md | 6 ++++++ lambda-http/Cargo.toml | 4 ++-- lambda-runtime/CHANGELOG.md | 6 ++++++ lambda-runtime/Cargo.toml | 2 +- 6 files changed, 22 insertions(+), 4 deletions(-) diff --git a/lambda-events/CHANGELOG.md b/lambda-events/CHANGELOG.md index c3cd99d7..43c5b455 100644 --- a/lambda-events/CHANGELOG.md +++ b/lambda-events/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.1.3](https://github.com/aws/aws-lambda-rust-runtime/compare/aws_lambda_events-v1.1.2...aws_lambda_events-v1.1.3) - 2026-04-16 + +### Other + +- remove non exhaustive from time structs ([#1138](https://github.com/aws/aws-lambda-rust-runtime/pull/1138)) + ## [1.1.2](https://github.com/aws/aws-lambda-rust-runtime/compare/aws_lambda_events-v1.1.1...aws_lambda_events-v1.1.2) - 2026-03-19 ### Fixed diff --git a/lambda-events/Cargo.toml b/lambda-events/Cargo.toml index 0de79e3c..c4a33de8 100644 --- a/lambda-events/Cargo.toml +++ b/lambda-events/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "aws_lambda_events" -version = "1.1.2" +version = "1.1.3" rust-version = "1.84.0" description = "AWS Lambda event definitions" authors = [ diff --git a/lambda-http/CHANGELOG.md b/lambda-http/CHANGELOG.md index 279edc43..bf2cbc9d 100644 --- a/lambda-http/CHANGELOG.md +++ b/lambda-http/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.1.3](https://github.com/aws/aws-lambda-rust-runtime/compare/lambda_http-v1.1.2...lambda_http-v1.1.3) - 2026-04-16 + +### Other + +- updated the following local packages: lambda_runtime + ## [1.1.2](https://github.com/aws/aws-lambda-rust-runtime/compare/lambda_http-v1.1.1...lambda_http-v1.1.2) - 2026-03-19 ### Other diff --git a/lambda-http/Cargo.toml b/lambda-http/Cargo.toml index 1f378a5b..69dce01c 100644 --- a/lambda-http/Cargo.toml +++ b/lambda-http/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lambda_http" -version = "1.1.2" +version = "1.1.3" 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.1.2", path = "../lambda-runtime", default-features = false} +lambda_runtime = { version = "1.1.3", path = "../lambda-runtime", default-features = false} mime = "0.3" percent-encoding = "2.2" pin-project-lite = { workspace = true } diff --git a/lambda-runtime/CHANGELOG.md b/lambda-runtime/CHANGELOG.md index 397db443..f7469fb4 100644 --- a/lambda-runtime/CHANGELOG.md +++ b/lambda-runtime/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.1.3](https://github.com/aws/aws-lambda-rust-runtime/compare/lambda_runtime-v1.1.2...lambda_runtime-v1.1.3) - 2026-04-16 + +### Other + +- remove non exhaustive from time structs ([#1138](https://github.com/aws/aws-lambda-rust-runtime/pull/1138)) + ## [1.1.2](https://github.com/aws/aws-lambda-rust-runtime/compare/lambda_runtime-v1.1.1...lambda_runtime-v1.1.2) - 2026-03-19 ### Fixed diff --git a/lambda-runtime/Cargo.toml b/lambda-runtime/Cargo.toml index 5c1b31e0..8e8e8c47 100644 --- a/lambda-runtime/Cargo.toml +++ b/lambda-runtime/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lambda_runtime" -version = "1.1.2" +version = "1.1.3" authors = [ "David Calavera ", "Harold Sun ",