From 37826f1e70e6fb7d7596f66f8e53b6687e48aa8d Mon Sep 17 00:00:00 2001 From: David Morgan Date: Thu, 17 Jul 2025 10:29:07 +0200 Subject: [PATCH 1/2] Release 6.10.0. --- json_serializable/CHANGELOG.md | 6 +++++- json_serializable/pubspec.yaml | 8 ++++---- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/json_serializable/CHANGELOG.md b/json_serializable/CHANGELOG.md index 1f49c4ea..7200f15a 100644 --- a/json_serializable/CHANGELOG.md +++ b/json_serializable/CHANGELOG.md @@ -1,6 +1,10 @@ -## 6.10.0-wip +## 6.10.0 - Required `analyzer: ^7.4.0`. +- Switch to analyzer element2 model and `build: ^3.0.0-dev`. +- Move `package:collection` to a dev dependency. +- Use new `null-aware element` feature in generated code. +- Require Dart 3.8 ## 6.10.0-dev diff --git a/json_serializable/pubspec.yaml b/json_serializable/pubspec.yaml index 06c449b1..d2184e4b 100644 --- a/json_serializable/pubspec.yaml +++ b/json_serializable/pubspec.yaml @@ -1,5 +1,5 @@ name: json_serializable -version: 6.10.0-wip +version: 6.10.0 description: >- Automatically generate code for converting to and from JSON by annotating Dart classes. @@ -17,7 +17,7 @@ resolution: workspace dependencies: analyzer: ^7.4.0 async: ^2.10.0 - build: ^3.0.0-dev + build: ^3.0.0 build_config: ^1.1.0 dart_style: '>=2.3.7 <4.0.0' @@ -28,7 +28,7 @@ dependencies: path: ^1.9.0 pub_semver: ^2.1.4 pubspec_parse: ^1.0.0 - source_gen: ^3.0.0-dev + source_gen: ^3.0.0 source_helper: ^1.3.4 dev_dependencies: @@ -38,7 +38,7 @@ dev_dependencies: build_verify: ^3.0.0 collection: ^1.17.0 logging: ^1.0.0 - source_gen_test: ^1.3.0-dev + source_gen_test: ^1.3.0 test: ^1.24.4 test_descriptor: ^2.0.0 test_process: ^2.0.0 From f68953dd3cfeae311d7dcafed85c8e58f72694d4 Mon Sep 17 00:00:00 2001 From: Kevin Moore Date: Thu, 17 Jul 2025 10:40:58 -0700 Subject: [PATCH 2/2] changelog cleanup --- json_serializable/CHANGELOG.md | 7 ------- 1 file changed, 7 deletions(-) diff --git a/json_serializable/CHANGELOG.md b/json_serializable/CHANGELOG.md index 7200f15a..f8c38271 100644 --- a/json_serializable/CHANGELOG.md +++ b/json_serializable/CHANGELOG.md @@ -6,13 +6,6 @@ - Use new `null-aware element` feature in generated code. - Require Dart 3.8 -## 6.10.0-dev - -- Switch to analyzer element2 model and `build: ^3.0.0-dev`. -- Move `package:collection` to a dev dependency. -- Use new `null-aware element` feature in generated code. -- Require Dart 3.8 - ## 6.9.5 - Support the `analyzer: '>=6.9.0 <8.0.0'`.