Skip to content

Commit 979c455

Browse files
authored
json_serializable: prepare to release v6.6.2 (#1311)
1 parent 4c7609d commit 979c455

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

json_serializable/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## 6.6.2-dev
1+
## 6.6.2
22

33
- Better handling of `Object?` or `dynamic` as `fromJson` constructor param.
44
- Require Dart 2.19

json_serializable/README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -300,15 +300,15 @@ targets:
300300
[`Enum`]: https://api.dart.dev/stable/dart-core/Enum-class.html
301301
[`int`]: https://api.dart.dev/stable/dart-core/int-class.html
302302
[`Iterable`]: https://api.dart.dev/stable/dart-core/Iterable-class.html
303-
[`JsonConverter`]: https://pub.dev/documentation/json_annotation/4.8.0/json_annotation/JsonConverter-class.html
304-
[`JsonEnum.valueField`]: https://pub.dev/documentation/json_annotation/4.8.0/json_annotation/JsonEnum/valueField.html
305-
[`JsonEnum`]: https://pub.dev/documentation/json_annotation/4.8.0/json_annotation/JsonEnum-class.html
306-
[`JsonKey.fromJson`]: https://pub.dev/documentation/json_annotation/4.8.0/json_annotation/JsonKey/fromJson.html
307-
[`JsonKey.toJson`]: https://pub.dev/documentation/json_annotation/4.8.0/json_annotation/JsonKey/toJson.html
308-
[`JsonKey`]: https://pub.dev/documentation/json_annotation/4.8.0/json_annotation/JsonKey-class.html
309-
[`JsonLiteral`]: https://pub.dev/documentation/json_annotation/4.8.0/json_annotation/JsonLiteral-class.html
310-
[`JsonSerializable`]: https://pub.dev/documentation/json_annotation/4.8.0/json_annotation/JsonSerializable-class.html
311-
[`JsonValue`]: https://pub.dev/documentation/json_annotation/4.8.0/json_annotation/JsonValue-class.html
303+
[`JsonConverter`]: https://pub.dev/documentation/json_annotation/4.8.1/json_annotation/JsonConverter-class.html
304+
[`JsonEnum.valueField`]: https://pub.dev/documentation/json_annotation/4.8.1/json_annotation/JsonEnum/valueField.html
305+
[`JsonEnum`]: https://pub.dev/documentation/json_annotation/4.8.1/json_annotation/JsonEnum-class.html
306+
[`JsonKey.fromJson`]: https://pub.dev/documentation/json_annotation/4.8.1/json_annotation/JsonKey/fromJson.html
307+
[`JsonKey.toJson`]: https://pub.dev/documentation/json_annotation/4.8.1/json_annotation/JsonKey/toJson.html
308+
[`JsonKey`]: https://pub.dev/documentation/json_annotation/4.8.1/json_annotation/JsonKey-class.html
309+
[`JsonLiteral`]: https://pub.dev/documentation/json_annotation/4.8.1/json_annotation/JsonLiteral-class.html
310+
[`JsonSerializable`]: https://pub.dev/documentation/json_annotation/4.8.1/json_annotation/JsonSerializable-class.html
311+
[`JsonValue`]: https://pub.dev/documentation/json_annotation/4.8.1/json_annotation/JsonValue-class.html
312312
[`List`]: https://api.dart.dev/stable/dart-core/List-class.html
313313
[`Map`]: https://api.dart.dev/stable/dart-core/Map-class.html
314314
[`num`]: https://api.dart.dev/stable/dart-core/num-class.html

json_serializable/lib/src/check_dependencies.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import 'package:pubspec_parse/pubspec_parse.dart';
1010

1111
const _productionDirectories = {'lib', 'bin'};
1212
const _annotationPkgName = 'json_annotation';
13-
final requiredJsonAnnotationMinVersion = Version.parse('4.8.0');
13+
final requiredJsonAnnotationMinVersion = Version.parse('4.8.1');
1414

1515
Future<void> pubspecHasRightVersion(BuildStep buildStep) async {
1616
final segments = buildStep.inputId.pathSegments;

json_serializable/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: json_serializable
2-
version: 6.6.2-dev
2+
version: 6.6.2
33
description: >-
44
Automatically generate code for converting to and from JSON by annotating
55
Dart classes.
@@ -21,7 +21,7 @@ dependencies:
2121

2222
# Use a tight version constraint to ensure that a constraint on
2323
# `json_annotation` properly constrains all features it provides.
24-
json_annotation: '>=4.8.0 <4.9.0'
24+
json_annotation: '>=4.8.1 <4.9.0'
2525
meta: ^1.3.0
2626
path: ^1.8.0
2727
pub_semver: ^2.0.0

0 commit comments

Comments
 (0)