Skip to content

Commit 0a8c8f8

Browse files
authored
chore(dart_frog_cli): v0.3.0 (#418)
1 parent cb645cc commit 0a8c8f8

File tree

12 files changed

+17
-13
lines changed

12 files changed

+17
-13
lines changed

bricks/create_dart_frog/__brick__/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ environment:
77
sdk: ">=2.18.0 <3.0.0"
88

99
dependencies:
10-
dart_frog: ^0.2.0
10+
dart_frog: ^0.3.0
1111

1212
dev_dependencies:
1313
mocktail: ^0.3.0

examples/counter/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ environment:
77
sdk: ">=2.18.0 <3.0.0"
88

99
dependencies:
10-
dart_frog: ^0.2.0
10+
dart_frog: ^0.3.0
1111

1212
dev_dependencies:
1313
http: ^0.13.5

examples/echo/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ environment:
77
sdk: ">=2.18.0 <3.0.0"
88

99
dependencies:
10-
dart_frog: ^0.2.0
10+
dart_frog: ^0.3.0
1111

1212
dev_dependencies:
1313
http: ^0.13.5

examples/hello_world/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ environment:
77
sdk: ">=2.18.0 <3.0.0"
88

99
dependencies:
10-
dart_frog: ^0.2.0
10+
dart_frog: ^0.3.0
1111

1212
dev_dependencies:
1313
http: ^0.13.5

examples/kitchen_sink/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ environment:
77
sdk: ">=2.18.0 <3.0.0"
88

99
dependencies:
10-
dart_frog: ^0.2.0
10+
dart_frog: ^0.3.0
1111

1212
dev_dependencies:
1313
http: ^0.13.5

examples/todos/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ environment:
77
sdk: ">=2.18.0 <3.0.0"
88

99
dependencies:
10-
dart_frog: ^0.2.0
10+
dart_frog: ^0.3.0
1111
in_memory_todos_data_source:
1212
path: packages/in_memory_todos_data_source
1313
todos_data_source:

packages/dart_frog_cli/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 0.3.0
2+
3+
- feat: upgrade to dart_frog ^0.3.0
4+
15
# 0.2.4
26

37
- fix: hook execution after pub cache clean

packages/dart_frog_cli/lib/src/commands/create/templates/create_dart_frog_bundle.dart

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/dart_frog_cli/lib/src/runtime_compatibility.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class DartFrogCompatibilityException implements Exception {
2121

2222
/// The version range of package:dart_frog
2323
/// supported by the current version of package:dart_frog_cli.
24-
const compatibleDartFrogVersion = '>=0.2.0 <0.3.0';
24+
const compatibleDartFrogVersion = '>=0.3.0 <0.4.0';
2525

2626
/// Whether current version of package:dart_frog_cli is compatible
2727
/// with the provided [version] of package:dart_frog.

packages/dart_frog_cli/lib/src/version.dart

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)