Skip to content

Commit

Permalink
Release 2.2.10
Browse files Browse the repository at this point in the history
bump dependencies
  • Loading branch information
k-paxian committed Sep 16, 2023
1 parent 9320d6b commit a7d1543
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 15 deletions.
4 changes: 4 additions & 0 deletions mapper/CHANGELOG.md
@@ -1,3 +1,7 @@
## 2.2.10

* bump dependencies

## 2.2.9

* Improve web platform support #13
Expand Down
4 changes: 2 additions & 2 deletions mapper/README.md
Expand Up @@ -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.
Expand Down
20 changes: 10 additions & 10 deletions 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:
2 changes: 1 addition & 1 deletion models/starlink/pubspec.yaml
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion models/unit_testing/pubspec.yaml
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion perf-test/pubspec.yaml
Expand Up @@ -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
Expand Down

0 comments on commit a7d1543

Please sign in to comment.