From ea27839f741c078cd715a8a20464709289793482 Mon Sep 17 00:00:00 2001 From: Kayla Nguyen Date: Wed, 10 Nov 2021 12:30:05 -0800 Subject: [PATCH] feat!: release v3.0.0 --- CHANGELOG.md | 8 +++++++- setup.py | 2 +- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bdd38d66..cfbbe99d 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] +## [3.0.0] - 2021-11-10 +### Fixed +- refactor: change declarative function signature from `cloudevent` to `cloud_event` ([#167]) + ## [2.4.0-beta.2] - 2021-11-01 ### Fixed - fix: remove debug statements @@ -125,7 +129,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.4.0-beta.2...HEAD +[Unreleased]: https://github.com/GoogleCloudPlatform/functions-framework-python/compare/v3.0.0...HEAD +[3.0.0]: https://github.com/GoogleCloudPlatform/functions-framework-python/releases/tag/v3.0.0 [2.4.0-beta.2]: https://github.com/GoogleCloudPlatform/functions-framework-python/releases/tag/v2.4.0-beta.2 [2.4.0-beta.1]: https://github.com/GoogleCloudPlatform/functions-framework-python/releases/tag/v2.4.0-beta.1 [2.3.0]: https://github.com/GoogleCloudPlatform/functions-framework-python/releases/tag/v2.3.0 @@ -150,6 +155,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 +[#167]: https://github.com/GoogleCloudPlatform/functions-framework-python/pull/167 [#160]: https://github.com/GoogleCloudPlatform/functions-framework-python/pull/160 [#154]: https://github.com/GoogleCloudPlatform/functions-framework-python/pull/154 [#152]: https://github.com/GoogleCloudPlatform/functions-framework-python/pull/152 diff --git a/setup.py b/setup.py index 83ec9ccd..18727fd6 100644 --- a/setup.py +++ b/setup.py @@ -25,7 +25,7 @@ setup( name="functions-framework", - version="2.4.0-beta.2", + version="3.0.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",