Skip to content

Commit 2b03869

Browse files
authored
Prepare for release (#1562)
1 parent 2aa5c93 commit 2b03869

6 files changed

Lines changed: 15 additions & 15 deletions

File tree

json_annotation/CHANGELOG.md

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

33
- Add `JsonSerializable.dateTimeUtc` configuration option.
44
([#1371](https://github.com/google/json_serializable.dart/issues/1371))

json_annotation/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: json_annotation
2-
version: 4.11.0-wip
2+
version: 4.11.0
33
description: >-
44
Classes and helper functions that support JSON code generation via the
55
`json_serializable` package.

json_serializable/CHANGELOG.md

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

33
- Fix schema generation for many different types of fields.
44
([#1549](https://github.com/google/json_serializable.dart/issues/1549))

json_serializable/README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -351,15 +351,15 @@ targets:
351351
[`Enum`]: https://api.dart.dev/dart-core/Enum-class.html
352352
[`int`]: https://api.dart.dev/dart-core/int-class.html
353353
[`Iterable`]: https://api.dart.dev/dart-core/Iterable-class.html
354-
[`JsonConverter`]: https://pub.dev/documentation/json_annotation/latest/json_annotation/JsonConverter-class.html
355-
[`JsonEnum.valueField`]: https://pub.dev/documentation/json_annotation/latest/json_annotation/JsonEnum/valueField.html
356-
[`JsonEnum`]: https://pub.dev/documentation/json_annotation/latest/json_annotation/JsonEnum-class.html
357-
[`JsonKey.fromJson`]: https://pub.dev/documentation/json_annotation/latest/json_annotation/JsonKey/fromJson.html
358-
[`JsonKey.toJson`]: https://pub.dev/documentation/json_annotation/latest/json_annotation/JsonKey/toJson.html
359-
[`JsonKey`]: https://pub.dev/documentation/json_annotation/latest/json_annotation/JsonKey-class.html
360-
[`JsonLiteral`]: https://pub.dev/documentation/json_annotation/latest/json_annotation/JsonLiteral-class.html
361-
[`JsonSerializable`]: https://pub.dev/documentation/json_annotation/latest/json_annotation/JsonSerializable-class.html
362-
[`JsonValue`]: https://pub.dev/documentation/json_annotation/latest/json_annotation/JsonValue-class.html
354+
[`JsonConverter`]: https://pub.dev/documentation/json_annotation/4.11.0/json_annotation/JsonConverter-class.html
355+
[`JsonEnum.valueField`]: https://pub.dev/documentation/json_annotation/4.11.0/json_annotation/JsonEnum/valueField.html
356+
[`JsonEnum`]: https://pub.dev/documentation/json_annotation/4.11.0/json_annotation/JsonEnum-class.html
357+
[`JsonKey.fromJson`]: https://pub.dev/documentation/json_annotation/4.11.0/json_annotation/JsonKey/fromJson.html
358+
[`JsonKey.toJson`]: https://pub.dev/documentation/json_annotation/4.11.0/json_annotation/JsonKey/toJson.html
359+
[`JsonKey`]: https://pub.dev/documentation/json_annotation/4.11.0/json_annotation/JsonKey-class.html
360+
[`JsonLiteral`]: https://pub.dev/documentation/json_annotation/4.11.0/json_annotation/JsonLiteral-class.html
361+
[`JsonSerializable`]: https://pub.dev/documentation/json_annotation/4.11.0/json_annotation/JsonSerializable-class.html
362+
[`JsonValue`]: https://pub.dev/documentation/json_annotation/4.11.0/json_annotation/JsonValue-class.html
363363
[`List`]: https://api.dart.dev/dart-core/List-class.html
364364
[`Map`]: https://api.dart.dev/dart-core/Map-class.html
365365
[`num`]: https://api.dart.dev/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
@@ -15,7 +15,7 @@ const _annotationPkgName = 'json_annotation';
1515
final _supportLanguageRange = VersionConstraint.parse(
1616
supportedLanguageConstraint,
1717
);
18-
final requiredJsonAnnotationMinVersion = Version.parse('4.11.0-0');
18+
final requiredJsonAnnotationMinVersion = Version.parse('4.11.0');
1919

2020
Future<void> pubspecHasRightVersion(BuildStep buildStep) async {
2121
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.13.0-wip
2+
version: 6.13.0
33
description: >-
44
Automatically generate code for converting to and from JSON by annotating
55
Dart classes.
@@ -23,7 +23,7 @@ dependencies:
2323

2424
# Use a tight version constraint to ensure that a constraint on
2525
# `json_annotation` properly constrains all features it provides.
26-
json_annotation: '>=4.11.0-0 <4.12.0'
26+
json_annotation: '>=4.11.0 <4.12.0'
2727
meta: ^1.16.0
2828
path: ^1.9.0
2929
pub_semver: ^2.1.4

0 commit comments

Comments
 (0)