Skip to content

Commit 7f06eb5

Browse files
authored
Version 1.0.1 (#13)
* Add a changelog * Version 1.0.1
1 parent 070d513 commit 7f06eb5

File tree

3 files changed

+35
-2
lines changed

3 files changed

+35
-2
lines changed

CHANGELOG.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# Changelog
2+
All notable changes to this project will be documented in this file.
3+
4+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6+
7+
## [Unreleased]
8+
9+
## [1.0.1] - 2020-01-30
10+
### Added
11+
- Add Cloud Run Button ([#1])
12+
- Add README badges ([#2])
13+
- Add `debug` flag documentation ([#7])
14+
- Add `watchdog` dependency ([#8])
15+
16+
### Fixed
17+
- Fix `--signature-type` typo ([#4])
18+
- Fix `install_requires` typo ([#12])
19+
20+
## [1.0.0] - 2020-01-09
21+
### Added
22+
- Initial release
23+
24+
[Unreleased]: https://github.com/GoogleCloudPlatform/functions-framework-python/compare/v1.0.1...HEAD
25+
[1.0.1]: https://github.com/GoogleCloudPlatform/functions-framework-python/releases/tag/v1.0.1
26+
[1.0.0]: https://github.com/GoogleCloudPlatform/functions-framework-python/releases/tag/v1.0.0
27+
28+
[#12]: https://github.com/GoogleCloudPlatform/functions-framework-python/pull/12
29+
[#8]: https://github.com/GoogleCloudPlatform/functions-framework-python/pull/8
30+
[#7]: https://github.com/GoogleCloudPlatform/functions-framework-python/pull/7
31+
[#4]: https://github.com/GoogleCloudPlatform/functions-framework-python/pull/4
32+
[#2]: https://github.com/GoogleCloudPlatform/functions-framework-python/pull/2
33+
[#1]: https://github.com/GoogleCloudPlatform/functions-framework-python/pull/1

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.0.0
48+
functions-framework==1.0.1
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.0.0",
28+
version="1.0.1",
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)