Skip to content

Commit d961ec5

Browse files
authored
chore(dart_frog): v0.0.1-dev.5 (#62)
1 parent 28b6809 commit d961ec5

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

packages/dart_frog/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 0.0.1-dev.5
2+
3+
- feat: change `Response.json` body to type `Object?`
4+
15
# 0.0.1-dev.4
26

37
- fix: support multiple routeNotFound.read calls

packages/dart_frog/lib/src/response.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ class Response {
3232
),
3333
);
3434

35-
/// Create a [Response] with a json body.
35+
/// Create a [Response] with a json encoded body.
3636
Response.json({
3737
int statusCode = 200,
3838
Object? body = const <String, dynamic>{},

packages/dart_frog/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: dart_frog
22
description: A fast, minimalistic backend framework for Dart built by Very Good Ventures.
3-
version: 0.0.1-dev.4
3+
version: 0.0.1-dev.5
44
homepage: https://github.com/VeryGoodOpenSource/dart_frog
55

66
environment:

0 commit comments

Comments
 (0)