Skip to content

Commit 9694cc5

Browse files
authored
json_serializable: publish v6.8.0 (#1418)
1 parent eea959d commit 9694cc5

File tree

3 files changed

+4
-8
lines changed

3 files changed

+4
-8
lines changed

json_serializable/CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## 6.8.0-wip
1+
## 6.8.0
22

33
- Add type arguments to `Map` literals used for `Record` serialization.
44
- Add support for `JsonSerializable(createJsonKeys: true)`.

json_serializable/lib/src/check_dependencies.dart

+1-1
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.1');
13+
final requiredJsonAnnotationMinVersion = Version.parse('4.9.0');
1414

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

json_serializable/pubspec.yaml

+2-6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: json_serializable
2-
version: 6.8.0-wip
2+
version: 6.8.0
33
description: >-
44
Automatically generate code for converting to and from JSON by annotating
55
Dart classes.
@@ -21,18 +21,14 @@ 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.1 <4.9.0'
24+
json_annotation: '>=4.9.0 <4.10.0'
2525
meta: ^1.3.0
2626
path: ^1.8.0
2727
pub_semver: ^2.0.0
2828
pubspec_parse: ^1.0.0
2929
source_gen: ^1.3.2
3030
source_helper: ^1.3.0
3131

32-
dependency_overrides:
33-
json_annotation:
34-
path: ../json_annotation
35-
3632
dev_dependencies:
3733
_json_serial_shared_test:
3834
path: ../shared_test

0 commit comments

Comments
 (0)