File tree Expand file tree Collapse file tree 3 files changed +13
-3
lines changed Expand file tree Collapse file tree 3 files changed +13
-3
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
6
7
7
## [ Unreleased]
8
8
9
+ ## [ 1.6.0] - 2020-08-19
10
+ ### Changed
11
+ - Add legacy GCF Python 3.7 behavior ([ #77 ] )
12
+
13
+ ### Added
14
+ - Improve documentation around Dockerfiles ([ #70 ] )
15
+
9
16
## [ 1.5.0] - 2020-07-06
10
17
### Changed
11
18
- Framework will consume entire request before responding ([ #66 ] )
@@ -67,7 +74,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
67
74
### Added
68
75
- Initial release
69
76
70
- [ Unreleased ] : https://github.com/GoogleCloudPlatform/functions-framework-python/compare/v1.5.0...HEAD
77
+ [ Unreleased ] : https://github.com/GoogleCloudPlatform/functions-framework-python/compare/v1.6.0...HEAD
78
+ [ 1.6.0 ] : https://github.com/GoogleCloudPlatform/functions-framework-python/releases/tag/v1.6.0
71
79
[ 1.5.0 ] : https://github.com/GoogleCloudPlatform/functions-framework-python/releases/tag/v1.5.0
72
80
[ 1.4.4 ] : https://github.com/GoogleCloudPlatform/functions-framework-python/releases/tag/v1.4.4
73
81
[ 1.4.3 ] : https://github.com/GoogleCloudPlatform/functions-framework-python/releases/tag/v1.4.3
@@ -81,6 +89,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
81
89
[ 1.0.1 ] : https://github.com/GoogleCloudPlatform/functions-framework-python/releases/tag/v1.0.1
82
90
[ 1.0.0 ] : https://github.com/GoogleCloudPlatform/functions-framework-python/releases/tag/v1.0.0
83
91
92
+ [ #77 ] : https://github.com/GoogleCloudPlatform/functions-framework-python/pull/77
93
+ [ #70 ] : https://github.com/GoogleCloudPlatform/functions-framework-python/pull/70
84
94
[ #66 ] : https://github.com/GoogleCloudPlatform/functions-framework-python/pull/66
85
95
[ #61 ] : https://github.com/GoogleCloudPlatform/functions-framework-python/pull/61
86
96
[ #49 ] : https://github.com/GoogleCloudPlatform/functions-framework-python/pull/49
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ pip install functions-framework
45
45
Or, for deployment, add the Functions Framework to your ` requirements.txt ` file:
46
46
47
47
```
48
- functions-framework==1.5 .0
48
+ functions-framework==1.6 .0
49
49
```
50
50
51
51
# Quickstart: Hello, World on your local machine
Original file line number Diff line number Diff line change 25
25
26
26
setup (
27
27
name = "functions-framework" ,
28
- version = "1.5 .0" ,
28
+ version = "1.6 .0" ,
29
29
description = "An open source FaaS (Function as a service) framework for writing portable Python functions -- brought to you by the Google Cloud Functions team." ,
30
30
long_description = long_description ,
31
31
long_description_content_type = "text/markdown" ,
You can’t perform that action at this time.
0 commit comments