Skip to content

Commit f2471b4

Browse files
authored
Version 2.0.0 (#67)
1 parent f5ebd98 commit f2471b4

File tree

3 files changed

+14
-3
lines changed

3 files changed

+14
-3
lines changed

CHANGELOG.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [2.0.0] - 2020-07-01
10+
### Added
11+
- Support `cloudevent` signature type ([#55], [#56])
12+
13+
### Changed
14+
- Framework will consume entire request before responding ([#66])
15+
916
## [1.4.4] - 2020-06-19
1017
### Fixed
1118
- Improve module loading ([#61])
@@ -63,7 +70,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6370
### Added
6471
- Initial release
6572

66-
[Unreleased]: https://github.com/GoogleCloudPlatform/functions-framework-python/compare/v1.4.4...HEAD
73+
[Unreleased]: https://github.com/GoogleCloudPlatform/functions-framework-python/compare/v2.0.0...HEAD
74+
[2.0.0]: https://github.com/GoogleCloudPlatform/functions-framework-python/releases/tag/v2.0.0
6775
[1.4.4]: https://github.com/GoogleCloudPlatform/functions-framework-python/releases/tag/v1.4.4
6876
[1.4.3]: https://github.com/GoogleCloudPlatform/functions-framework-python/releases/tag/v1.4.3
6977
[1.4.2]: https://github.com/GoogleCloudPlatform/functions-framework-python/releases/tag/v1.4.2
@@ -76,7 +84,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7684
[1.0.1]: https://github.com/GoogleCloudPlatform/functions-framework-python/releases/tag/v1.0.1
7785
[1.0.0]: https://github.com/GoogleCloudPlatform/functions-framework-python/releases/tag/v1.0.0
7886

87+
[#66]: https://github.com/GoogleCloudPlatform/functions-framework-python/pull/66
7988
[#61]: https://github.com/GoogleCloudPlatform/functions-framework-python/pull/61
89+
[#56]: https://github.com/GoogleCloudPlatform/functions-framework-python/pull/56
90+
[#55]: https://github.com/GoogleCloudPlatform/functions-framework-python/pull/55
8091
[#49]: https://github.com/GoogleCloudPlatform/functions-framework-python/pull/49
8192
[#44]: https://github.com/GoogleCloudPlatform/functions-framework-python/pull/44
8293
[#38]: https://github.com/GoogleCloudPlatform/functions-framework-python/pull/38

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ pip install functions-framework
4545
Or, for deployment, add the Functions Framework to your `requirements.txt` file:
4646

4747
```
48-
functions-framework==1.4.4
48+
functions-framework==2.0.0
4949
```
5050

5151
# Quickstart: Hello, World on your local machine

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626
setup(
2727
name="functions-framework",
28-
version="1.4.4",
28+
version="2.0.0",
2929
description="An open source FaaS (Function as a service) framework for writing portable Python functions -- brought to you by the Google Cloud Functions team.",
3030
long_description=long_description,
3131
long_description_content_type="text/markdown",

0 commit comments

Comments
 (0)