From eb2a08a4146ba34956b7478324912b8a5acde679 Mon Sep 17 00:00:00 2001 From: heitorlessa Date: Thu, 18 Jun 2020 16:23:59 +0100 Subject: [PATCH 1/3] chore: bump version and remove beta/RC status Signed-off-by: heitorlessa --- CHANGELOG.md | 5 +++++ README.md | 2 -- pyproject.toml | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 75c257c3bf9..f4d0be9ddb9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.0.0] - 2020-06-18 +### Added +- **Metrics**: `add_medatada` method to add any metric metadata you'd like to ease finding metric related data via CloudWatch Logs +- Set status as General Availability + ## [0.11.0] - 2020-06-08 ### Added - Imports can now be made from top level of module, e.g.: `from aws_lambda_powertools import Logger, Metrics, Tracer` diff --git a/README.md b/README.md index f334dde0324..ae8c3f97a79 100644 --- a/README.md +++ b/README.md @@ -5,8 +5,6 @@ A suite of utilities for AWS Lambda Functions that makes tracing with AWS X-Ray, structured logging and creating custom metrics asynchronously easier. -* **Status**: Release candidate -* **How long until GA?**: [Current progress](https://github.com/awslabs/aws-lambda-powertools/projects/1) * **Docs**: [Main docs](https://awslabs.github.io/aws-lambda-powertools-python/) | [API Docs](https://awslabs.github.io/aws-lambda-powertools-python/api/) ## Features diff --git a/pyproject.toml b/pyproject.toml index c147ab1c9a7..79fc7753f07 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "aws_lambda_powertools" -version = "0.11.0" +version = "1.0.0" description = "Python utilities for AWS Lambda functions including but not limited to tracing, logging and custom metric" authors = ["Amazon Web Services"] classifiers=[ From bdb75ae8b5e13518c7cb694261d0c124accde8cb Mon Sep 17 00:00:00 2001 From: heitorlessa Date: Thu, 18 Jun 2020 16:33:10 +0100 Subject: [PATCH 2/3] docs: add quick helpful links to the top Signed-off-by: heitorlessa --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ae8c3f97a79..18de8e00e0d 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ A suite of utilities for AWS Lambda Functions that makes tracing with AWS X-Ray, structured logging and creating custom metrics asynchronously easier. -* **Docs**: [Main docs](https://awslabs.github.io/aws-lambda-powertools-python/) | [API Docs](https://awslabs.github.io/aws-lambda-powertools-python/api/) +**[📜Documentation](https://awslabs.github.io/aws-lambda-powertools-python/)** | **[API Docs](https://awslabs.github.io/aws-lambda-powertools-python/api/)** | **[🐍PyPi](https://pypi.org/project/aws-lambda-powertools/)** | **[Feature request](https://github.com/awslabs/aws-lambda-powertools-python/issues/new?assignees=&labels=feature-request%2C+triage&template=feature_request.md&title=)** | **[🐛Bug Report](https://github.com/awslabs/aws-lambda-powertools-python/issues/new?assignees=&labels=bug%2C+triage&template=bug_report.md&title=)** | **[Kitchen sink example](https://github.com/awslabs/aws-lambda-powertools-python/tree/develop/example)** ## Features From da5b6232a2878213ecf32bb137bcc615fd600731 Mon Sep 17 00:00:00 2001 From: Heitor Lessa Date: Thu, 18 Jun 2020 16:43:08 +0100 Subject: [PATCH 3/3] fix: metadata typo Co-authored-by: Tom McCarthy --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f4d0be9ddb9..c924e2a8f48 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.0.0] - 2020-06-18 ### Added -- **Metrics**: `add_medatada` method to add any metric metadata you'd like to ease finding metric related data via CloudWatch Logs +- **Metrics**: `add_metadata` method to add any metric metadata you'd like to ease finding metric related data via CloudWatch Logs - Set status as General Availability ## [0.11.0] - 2020-06-08