File tree Expand file tree Collapse file tree 3 files changed +11
-3
lines changed Expand file tree Collapse file tree 3 files changed +11
-3
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
6
7
7
## [ Unreleased]
8
8
9
+ ## [ 2.1.1] - 2021-02-17
10
+ ### Fixed
11
+ - Add backwards-compatible logging for GCF Python 3.7 ([ #107 ] )
12
+ - Document ` --dry-run ` flag ([ #105 ] )
13
+
9
14
## [ 2.1.0] - 2020-12-23
10
15
### Added
11
16
- Support Python 3.9
@@ -85,7 +90,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
85
90
### Added
86
91
- Initial release
87
92
88
- [ Unreleased ] : https://github.com/GoogleCloudPlatform/functions-framework-python/compare/v2.1.0...HEAD
93
+ [ Unreleased ] : https://github.com/GoogleCloudPlatform/functions-framework-python/compare/v2.1.1...HEAD
94
+ [ 2.1.1 ] : https://github.com/GoogleCloudPlatform/functions-framework-python/releases/tag/v2.1.1
89
95
[ 2.1.0 ] : https://github.com/GoogleCloudPlatform/functions-framework-python/releases/tag/v2.1.0
90
96
[ 2.0.0 ] : https://github.com/GoogleCloudPlatform/functions-framework-python/releases/tag/v2.0.0
91
97
[ 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
102
108
[ 1.0.1 ] : https://github.com/GoogleCloudPlatform/functions-framework-python/releases/tag/v1.0.1
103
109
[ 1.0.0 ] : https://github.com/GoogleCloudPlatform/functions-framework-python/releases/tag/v1.0.0
104
110
111
+ [ #107 ] : https://github.com/GoogleCloudPlatform/functions-framework-python/pull/107
112
+ [ #105 ] : https://github.com/GoogleCloudPlatform/functions-framework-python/pull/105
105
113
[ #77 ] : https://github.com/GoogleCloudPlatform/functions-framework-python/pull/77
106
114
[ #76 ] : https://github.com/GoogleCloudPlatform/functions-framework-python/pull/76
107
115
[ #70 ] : https://github.com/GoogleCloudPlatform/functions-framework-python/pull/70
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==2.1.0
48
+ functions-framework==2.1.1
49
49
```
50
50
51
51
## Quickstarts
Original file line number Diff line number Diff line change 25
25
26
26
setup (
27
27
name = "functions-framework" ,
28
- version = "2.1.0 " ,
28
+ version = "2.1.1 " ,
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