From e93f78978581b7f635eeb1bd2bbc38c82bee61d2 Mon Sep 17 00:00:00 2001 From: Nicolas Moutschen Date: Fri, 21 Aug 2020 15:52:51 +0200 Subject: [PATCH 1/2] chore: bump version to 1.3.0 --- CHANGELOG.md | 4 ++++ pyproject.toml | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2eaf67cbae7..2507457fe77 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.3.0] - 2020-08-21 +### Added +- **Utilities**: Add parameters retrieval utility + ## [1.2.0] - 2020-08-20 ### Added - **Tracer**: capture_method decorator now supports generator functions (including context managers) diff --git a/pyproject.toml b/pyproject.toml index 8d2a08f0e7a..75c74fb9bed 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "aws_lambda_powertools" -version = "1.2.0" +version = "1.3.0" description = "Python utilities for AWS Lambda functions including but not limited to tracing, logging and custom metric" authors = ["Amazon Web Services"] classifiers=[ From 0c7fc246a010b25ddf25d3fd7b6c21825a835390 Mon Sep 17 00:00:00 2001 From: Heitor Lessa Date: Fri, 21 Aug 2020 15:54:58 +0200 Subject: [PATCH 2/2] improv: make change more descriptive --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2507457fe77..5981ce910a4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,7 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [1.3.0] - 2020-08-21 ### Added -- **Utilities**: Add parameters retrieval utility +- **Utilities**: Add new `parameters` utility to retrieve a single or multiple parameters from SSM Parameter Store, Secrets Manager, DynamoDB, or your very own ## [1.2.0] - 2020-08-20 ### Added