Skip to content

Commit f2a7750

Browse files
authored
Prepare to release v0.3.0 of functions_framework_builder (#141)
Also dropped dev_dependecy on function_framework in two examples
1 parent a0d88b3 commit f2a7750

File tree

4 files changed

+5
-12
lines changed

4 files changed

+5
-12
lines changed

examples/json/pubspec.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,5 @@ dev_dependencies:
1818
test_process: ^1.0.0
1919

2020
dependency_overrides:
21-
functions_framework:
22-
path: ../../functions_framework
2321
functions_framework_builder:
2422
path: ../../functions_framework_builder

examples/raw_cloudevent/pubspec.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,5 @@ dev_dependencies:
1616
test_process: ^1.0.0
1717

1818
dependency_overrides:
19-
functions_framework:
20-
path: ../../functions_framework
2119
functions_framework_builder:
2220
path: ../../functions_framework_builder

functions_framework_builder/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
## 0.3.0-dev
3+
## 0.3.0
44

55
- Added support for connecting functions that handle and return JSON data.
66
- Added support for connecting functions that handle the `CloudEvent` type.

functions_framework_builder/pubspec.yaml

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: functions_framework_builder
2-
version: 0.3.0-dev
2+
version: 0.3.0
33
description: Builder for package:functions_framework
44
repository: https://github.com/GoogleCloudPlatform/functions-framework-dart
55

@@ -11,8 +11,9 @@ dependencies:
1111
build: ^1.3.0
1212
build_config: ^0.4.3
1313
dart_style: ^1.3.10
14-
# TODO: put back version tight version constraint before publish
15-
functions_framework: any
14+
# There is a tight version constraint because the builder has a strict
15+
# dependency on all features exposed.
16+
functions_framework: '>=0.3.0 <0.3.1'
1617
glob: ^1.2.0
1718
meta: ^1.2.4
1819
path: ^1.7.0
@@ -24,7 +25,3 @@ dev_dependencies:
2425
package_config: ^1.9.3
2526
stream_transform: ^1.2.0
2627
test: ^1.15.7
27-
28-
dependency_overrides:
29-
functions_framework:
30-
path: ../functions_framework

0 commit comments

Comments
 (0)