From a7d15439459d33e095c5cb9925a5f6944819021e Mon Sep 17 00:00:00 2001 From: Alexander Mazuruk Date: Sat, 16 Sep 2023 19:00:23 +0200 Subject: [PATCH] Release 2.2.10 bump dependencies --- mapper/CHANGELOG.md | 4 ++++ mapper/README.md | 4 ++-- mapper/pubspec.yaml | 20 ++++++++++---------- models/starlink/pubspec.yaml | 2 +- models/unit_testing/pubspec.yaml | 2 +- perf-test/pubspec.yaml | 2 +- 6 files changed, 19 insertions(+), 15 deletions(-) diff --git a/mapper/CHANGELOG.md b/mapper/CHANGELOG.md index 2caf324..14a19bb 100644 --- a/mapper/CHANGELOG.md +++ b/mapper/CHANGELOG.md @@ -1,3 +1,7 @@ +## 2.2.10 + +* bump dependencies + ## 2.2.9 * Improve web platform support #13 diff --git a/mapper/README.md b/mapper/README.md index 47e787b..e664df5 100644 --- a/mapper/README.md +++ b/mapper/README.md @@ -131,14 +131,14 @@ targets: Now run the code generation step with the root of your package as the current directory: ```shell -> dart run build_runner build --delete-conflicting-outputs +dart run build_runner build --delete-conflicting-outputs ``` **You'll need to re-run code generation each time you are making changes to `lib/main.dart`** So for development time, use `watch` like this ```shell -> dart run build_runner watch --delete-conflicting-outputs +dart run build_runner watch --delete-conflicting-outputs ``` Each time you modify your project code, all `*.mapper.g.dart` files will be updated as well. diff --git a/mapper/pubspec.yaml b/mapper/pubspec.yaml index a383c9e..169429d 100644 --- a/mapper/pubspec.yaml +++ b/mapper/pubspec.yaml @@ -1,21 +1,21 @@ name: dart_json_mapper -version: 2.2.9 +version: 2.2.10 description: > This package allows programmers to annotate Dart objects in order to serialize / deserialize them from / to JSON. homepage: https://github.com/k-paxian/dart-json-mapper environment: - sdk: '>=2.17.0 <3.0.0' + sdk: '>=2.17.0 <4.0.0' dependencies: - analyzer: ^5.3.1 - build: ^2.3.1 + analyzer: ^5.4.0 + build: ^2.4.1 build_config: ^1.1.1 - intl: ^0.18.0 - meta: ^1.8.0 - path: ^1.8.2 - reflectable: ^4.0.4 - collection: ^1.16.0 - pubspec_parse: ^1.2.1 + intl: ^0.18.1 + meta: ^1.10.0 + path: ^1.8.3 + reflectable: ^4.0.5 + collection: ^1.18.0 + pubspec_parse: ^1.2.3 dev_dependencies: lints: build_runner: diff --git a/models/starlink/pubspec.yaml b/models/starlink/pubspec.yaml index 1a74639..fae9fe5 100644 --- a/models/starlink/pubspec.yaml +++ b/models/starlink/pubspec.yaml @@ -5,7 +5,7 @@ description: > This package contains classes to define Starlink data structures: https://api.spacexdata.com/v4/starlink environment: - sdk: '>=2.12.0 <3.0.0' + sdk: '>=2.12.0 <4.0.0' dependencies: dart_json_mapper: dev_dependencies: diff --git a/models/unit_testing/pubspec.yaml b/models/unit_testing/pubspec.yaml index 74f130d..07f3910 100644 --- a/models/unit_testing/pubspec.yaml +++ b/models/unit_testing/pubspec.yaml @@ -4,7 +4,7 @@ publish_to: none description: > This package contains classes to define data structures for Dart Json Mapper Unit Tests. environment: - sdk: '>=2.12.0 <3.0.0' + sdk: '>=2.12.0 <4.0.0' dependencies: dart_json_mapper: dev_dependencies: diff --git a/perf-test/pubspec.yaml b/perf-test/pubspec.yaml index d05a9bc..8551837 100644 --- a/perf-test/pubspec.yaml +++ b/perf-test/pubspec.yaml @@ -9,7 +9,7 @@ description: > And unit tests for DartJsonMapper homepage: https://github.com/k-paxian/dart-json-mapper/perf-test environment: - sdk: '>=2.17.0 <3.0.0' + sdk: '>=2.17.0 <4.0.0' dependencies: dart_json_mapper: json_annotation: ^4.7.0