From e0e6bfa1bc0f3e21d699283c4daa31e6757d9fa5 Mon Sep 17 00:00:00 2001 From: Arjun Srinivasan <69502+asriniva@users.noreply.github.com> Date: Wed, 24 Feb 2021 11:04:45 -0800 Subject: [PATCH] Update changelog (#115) --- CHANGELOG.md | 8 +++++++- README.md | 2 +- setup.py | 2 +- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c4ec7480..2f7c9734 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] +## [2.1.2] - 2020-02-23 +### Added +- Add crash header to 500 responses ([#114]) + ## [2.1.1] - 2021-02-17 ### Fixed - Add backwards-compatible logging for GCF Python 3.7 ([#107]) @@ -90,7 +94,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - Initial release -[Unreleased]: https://github.com/GoogleCloudPlatform/functions-framework-python/compare/v2.1.1...HEAD +[Unreleased]: https://github.com/GoogleCloudPlatform/functions-framework-python/compare/v2.1.2...HEAD +[2.1.2]: https://github.com/GoogleCloudPlatform/functions-framework-python/releases/tag/v2.1.2 [2.1.1]: https://github.com/GoogleCloudPlatform/functions-framework-python/releases/tag/v2.1.1 [2.1.0]: https://github.com/GoogleCloudPlatform/functions-framework-python/releases/tag/v2.1.0 [2.0.0]: https://github.com/GoogleCloudPlatform/functions-framework-python/releases/tag/v2.0.0 @@ -108,6 +113,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 [1.0.1]: https://github.com/GoogleCloudPlatform/functions-framework-python/releases/tag/v1.0.1 [1.0.0]: https://github.com/GoogleCloudPlatform/functions-framework-python/releases/tag/v1.0.0 +[#114]: https://github.com/GoogleCloudPlatform/functions-framework-python/pull/114 [#107]: https://github.com/GoogleCloudPlatform/functions-framework-python/pull/107 [#105]: https://github.com/GoogleCloudPlatform/functions-framework-python/pull/105 [#77]: https://github.com/GoogleCloudPlatform/functions-framework-python/pull/77 diff --git a/README.md b/README.md index 312aff46..8f6e4fa7 100644 --- a/README.md +++ b/README.md @@ -45,7 +45,7 @@ pip install functions-framework Or, for deployment, add the Functions Framework to your `requirements.txt` file: ``` -functions-framework==2.1.1 +functions-framework==2.1.2 ``` ## Quickstarts diff --git a/setup.py b/setup.py index 63176dfa..694d7079 100644 --- a/setup.py +++ b/setup.py @@ -25,7 +25,7 @@ setup( name="functions-framework", - version="2.1.1", + version="2.1.2", description="An open source FaaS (Function as a service) framework for writing portable Python functions -- brought to you by the Google Cloud Functions team.", long_description=long_description, long_description_content_type="text/markdown",