From 5cccaba6594d3f3e29f728d0aab821db1c641da5 Mon Sep 17 00:00:00 2001 From: heitorlessa Date: Thu, 21 Apr 2022 14:47:21 +0200 Subject: [PATCH 1/2] fix(deps): correct py36 marker for jmespath --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 894c66b592e..f8e6cd36bbb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -25,8 +25,8 @@ aws-xray-sdk = "^2.8.0" fastjsonschema = "^2.14.5" boto3 = "^1.18" jmespath = [ - { version ="<=0.10.0", python = "^3.6" }, - { version ="^1.0.0", python = "^3.7" } + { version = "<=0.10.0", python = "3.6" }, + { version = "^1.0.0", python = "^3.7" } ] pydantic = {version = "^1.8.2", optional = true } email-validator = {version = "*", optional = true } From 134da8e08252999fe64c92b4eb1631ea41519a94 Mon Sep 17 00:00:00 2001 From: heitorlessa Date: Thu, 21 Apr 2022 14:50:20 +0200 Subject: [PATCH 2/2] chore: bump to 1.25.9 --- CHANGELOG.md | 5 +++++ pyproject.toml | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bd0c5a922a3..3bc975224c8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file. This project follows [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) format for changes and adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## 1.25.9 - 2022-04-21 + +### Bug Fixes + +* **deps**: correct py36 marker for jmespath ## 1.25.8 - 2022-04-21 ### Bug Fixes diff --git a/pyproject.toml b/pyproject.toml index f8e6cd36bbb..29239db20d0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "aws_lambda_powertools" -version = "1.25.8" +version = "1.25.9" description = "A suite of utilities for AWS Lambda functions to ease adopting best practices such as tracing, structured logging, custom metrics, batching, idempotency, feature flags, and more." authors = ["Amazon Web Services"] include = ["aws_lambda_powertools/py.typed", "THIRD-PARTY-LICENSES"]