From 348064d8fdea14c21aec39fdada1e8907898be12 Mon Sep 17 00:00:00 2001 From: Dustin Ingram Date: Wed, 17 Feb 2021 17:25:28 -0600 Subject: [PATCH] Version 2.1.1 (#112) * Update changelog * Version 2.1.1 --- CHANGELOG.md | 10 +++++++++- README.md | 2 +- setup.py | 2 +- 3 files changed, 11 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f3ae4d9d..c4ec7480 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] +## [2.1.1] - 2021-02-17 +### Fixed +- Add backwards-compatible logging for GCF Python 3.7 ([#107]) +- Document `--dry-run` flag ([#105]) + ## [2.1.0] - 2020-12-23 ### Added - Support Python 3.9 @@ -85,7 +90,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.0...HEAD +[Unreleased]: https://github.com/GoogleCloudPlatform/functions-framework-python/compare/v2.1.1...HEAD +[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 [1.6.0]: https://github.com/GoogleCloudPlatform/functions-framework-python/releases/tag/v1.6.0 @@ -102,6 +108,8 @@ 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 +[#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 [#76]: https://github.com/GoogleCloudPlatform/functions-framework-python/pull/76 [#70]: https://github.com/GoogleCloudPlatform/functions-framework-python/pull/70 diff --git a/README.md b/README.md index 1d0597b3..312aff46 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.0 +functions-framework==2.1.1 ``` ## Quickstarts diff --git a/setup.py b/setup.py index e03eed6f..63176dfa 100644 --- a/setup.py +++ b/setup.py @@ -25,7 +25,7 @@ setup( name="functions-framework", - version="2.1.0", + version="2.1.1", 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",