From 675a5d5ddfdaf23811c255529b25fa875cfa974c Mon Sep 17 00:00:00 2001 From: Michael Lazear Date: Thu, 28 Mar 2024 21:36:50 -0700 Subject: [PATCH] chore: update to v0.7.0 --- CHANGELOG.md | 7 ++++++- Cargo.toml | 12 ++++++------ 2 files changed, 12 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7a38488..3d53e6f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.7.0] +### Changed + +- Upgrade lambda_http to 0.11 + ## [0.6.0] ### Changed @@ -14,4 +19,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed -- Bumped dependencies to http v1.0 and bytes v1.5 \ No newline at end of file +- Bumped dependencies to http v1.0 and bytes v1.5 diff --git a/Cargo.toml b/Cargo.toml index 13bb4a8..a5c71fc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "axum-aws-lambda" -version = "0.6.0" +version = "0.7.0" edition = "2021" authors = ["Michael Lazear"] description = "Tower Layer for compatibility between Axum and AWS Lambda Runtime" @@ -13,15 +13,15 @@ keywords = ["axum", "lambda", "tower", "aws"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -axum = "0.7.2" -lambda_http = "0.11.0" -hyper = "1.0.1" +axum = "0.7" +lambda_http = "0.11" +hyper = "1.0" bytes = "1.5" http = "1" tower = "0.4" tower-service = "0.3" -futures-util = "0.3.29" -http-body-util = "0.1.0" +futures-util = "0.3" +http-body-util = "0.1" [dev-dependencies] tokio = { version = "1.0", features = ["rt"] }