From d934ba0374b8c1c45c1fa0d5856b0a99ab3aeca9 Mon Sep 17 00:00:00 2001 From: Dustin Ingram Date: Mon, 13 Apr 2020 13:31:14 -0500 Subject: [PATCH] Version 1.3.0 (#34) --- CHANGELOG.md | 5 ++++- README.md | 2 +- setup.py | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index aa11fb39..ca029a89 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] + +## [1.3.0] - 2020-04-13 - Add support for running `python -m functions_framework` ([#31]) - Move `functions_framework.cli.cli` to `functions_framework._cli._cli` - Adjust path handling for robots.txt and favicon.ico ([#33]) @@ -38,7 +40,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/v1.2.0...HEAD +[Unreleased]: https://github.com/GoogleCloudPlatform/functions-framework-python/compare/v1.3.0...HEAD +[1.3.0]: https://github.com/GoogleCloudPlatform/functions-framework-python/releases/tag/v1.3.0 [1.2.0]: https://github.com/GoogleCloudPlatform/functions-framework-python/releases/tag/v1.2.0 [1.1.1]: https://github.com/GoogleCloudPlatform/functions-framework-python/releases/tag/v1.1.1 [1.0.1]: https://github.com/GoogleCloudPlatform/functions-framework-python/releases/tag/v1.0.1 diff --git a/README.md b/README.md index ea5f3f83..fd982e38 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==1.2.0 +functions-framework==1.3.0 ``` # Quickstart: Hello, World on your local machine diff --git a/setup.py b/setup.py index a51631a3..3a5b6b68 100644 --- a/setup.py +++ b/setup.py @@ -25,7 +25,7 @@ setup( name="functions-framework", - version="1.2.0", + version="1.3.0", 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",