10000 feat: Version 2.3.0 (#156) · jrmfg/functions-framework-python@6c69bb8 · GitHub
[go: up one dir, main page]

Skip to content

Commit 6c69bb8

Browse files
authored
feat: Version 2.3.0 (GoogleCloudPlatform#156)
1 parent d5651bb commit 6c69bb8

File tree

3 files changed

+14
-5
lines changed

3 files changed

+14
-5
lines changed

CHANGELOG.md

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

77
## [Unreleased]
88

9-
## [2.3.0] - 2021-10-08
9+
## [2.3.0] - 2021-10-12
1010
### Added
11-
- Support Python 3.10
11+
- feat: add support for Python 3.10 ([#151])
12+
### Changed
13+
- fix: update event conversion ([#154])
14+
- fix: Move backwards-compatible logic before function source load ([#152])
15+
- fix: Add a DummyErrorHandler ([#137])
1216

1317
## [2.2.1] - 2021-06-01
1418
### Changed
@@ -113,7 +117,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
113117
### Added
114118
- Initial release
115119

116-
[Unreleased]: https://github.com/GoogleCloudPlatform/functions-framework-python/compare/v2.2.1...HEAD
120+
[Unreleased]: https://github.com/GoogleCloudPlatform/functions-framework-python/compare/v2.3.0...HEAD
121+
[2.3.0]: https://github.com/GoogleCloudPlatform/functions-framework-python/releases/tag/v2.3.0
117122
[2.2.1]: https://github.com/GoogleCloudPlatform/functions-framework-python/releases/tag/v2.2.1
118123
[2.2.0]: https://github.com/GoogleCloudPlatform/functions-framework-python/releases/tag/v2.2.0
119124
[2.1.3]: https://github.com/GoogleCloudPlatform/functions-framework-python/releases/tag/v2.1.3
@@ -135,6 +140,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
135140
[1.0.1]: https://github.com/GoogleCloudPlatform/functions-framework-python/releases/tag/v1.0.1
136141
[1.0.0]: https://github.com/GoogleCloudPlatform/functions-framework-python/releases/tag/v1.0.0
137142

143+
[#154]: https://github.com/GoogleCloudPlatform/functions-framework-python/pull/154
144+
[#152]: https://github.com/GoogleCloudPlatform/functions-framework-python/pull/152
145+
[#151]: https://github.com/GoogleCloudPlatform/functions-framework-python/pull/151
146+
[#137]: https://github.com/GoogleCloudPlatform/functions-framework-python/pull/137
138147
[#131]: https://github.com/GoogleCloudPlatform/functions-framework-python/pull/131
139148
[#129]: https://github.com/GoogleCloudPlatform/functions-framework-python/pull/129
140149
[#122]: https://github.com/GoogleCloudPlatform/functions-framework-python/pull/122

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==2.2.1
48+
functions-framework==2.3.0
4949
```
5050

5151
## Quickstarts

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="2.2.1",
28+
version="2.3.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)
0