Skip to content

Commit 3d576a2

Browse files
committed
upgrade analyzer & source_gen
1 parent 0a0c228 commit 3d576a2

File tree

16 files changed

+140
-61
lines changed

16 files changed

+140
-61
lines changed

builders/json_serializable_fic/CHANGELOG.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
# Changelog
2+
3+
## 1.0.1
4+
5+
- Update analyzer to ^7.3.0
6+
- Update source_gen to ^2.0.0
7+
8+
## 1.0.0
9+
10+
- Initial release
11+
112
## 0.3.4
213

314
- **CHORE**: update dependencies
@@ -12,7 +23,7 @@
1223

1324
## 0.3.1
1425

15-
- **FEAT**: analyzer 3.0.0.
26+
- **FEAT**: analyzer 3.0.0.
1627

1728
## 0.3.0
1829

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
name: json_serializable_fic
22
description: Adding support for fast immutable collections for json_serializable
3-
version: 1.0.0
3+
version: 1.0.1
44
homepage: https://github.com/knaeckeKami/immutable_json_list_serializer
55

66
environment:
7-
sdk: '>=3.0.0 <4.0.0'
7+
sdk: ">=3.0.0 <4.0.0"
88

99
dev_dependencies:
1010
test: ^1.16.8
@@ -13,10 +13,10 @@ dev_dependencies:
1313
lints: ^2.0.0
1414

1515
dependencies:
16-
json_serializable: ^6.0.1
17-
json_annotation: ^4.3.0
16+
json_serializable: ^6.0.1
17+
json_annotation: ^4.3.0
1818
build_runner: ^2.4.7
19-
source_gen: ^1.0.0
20-
analyzer: ^6.3.0
19+
source_gen: ^2.0.0
20+
analyzer: ^7.3.0
2121
build: ^2.0.0
2222
json_serializable_fic_typehelpers: ^2.1.2

builders/json_serializable_immutable_collections/CHANGELOG.md

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,25 @@
1+
# Changelog
2+
3+
## 1.0.1
4+
5+
- Update analyzer to ^7.3.0
6+
- Update source_gen to ^2.0.0
7+
8+
## 1.0.0
9+
10+
- Initial release
11+
112
## 0.10.3
213

314
- **CHORE**: update dependencies
415

516
## 0.10.2
617

7-
- **CHORE**: update dependencies
18+
- **CHORE**: update dependencies
819

920
## 0.10.1
1021

11-
- **FEAT**: analyzer 3.0.0.
22+
- **FEAT**: analyzer 3.0.0.
1223

1324
## 0.10.0
1425

@@ -32,7 +43,6 @@
3243

3344
- support json_serializable 4.1.0
3445

35-
3646
## 0.6.0-nullsafety.0
3747

3848
- migrate to nullsafety
@@ -41,7 +51,6 @@
4151

4252
- support analyzer ^0.40.0
4353

44-
4554
## 0.4.2
4655

4756
- deactiviate support for analyzer 0.40.0, causes problems, fallback to 0.39.0
@@ -75,20 +84,18 @@
7584

7685
- Badge
7786

78-
## 0.0.4
87+
## 0.0.4
7988

8089
- Pana fixes
8190

8291
## 0.0.3
8392

8493
- Documentation fixes
8594

86-
8795
## 0.0.2
8896

8997
- Documentation fixes
9098

91-
9299
## 0.0.1
93100

94101
- Initial Release
Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
name: json_serializable_immutable_collections
22
description: Adding support for immutable collections for json_serializable
3-
version: 1.0.0
3+
version: 1.0.1
44
homepage: https://github.com/knaeckeKami/immutable_json_list_serializer
55

66
environment:
7-
sdk: '>=3.0.0 <4.0.0'
7+
sdk: ">=3.0.0 <4.0.0"
88

99
dev_dependencies:
1010
test: ^1.16.8
@@ -13,11 +13,11 @@ dev_dependencies:
1313
lints: ^2.0.0
1414

1515
dependencies:
16-
json_serializable: ^6.0.1
17-
json_annotation: ^4.3.0
16+
json_serializable: ^6.0.1
17+
json_annotation: ^4.3.0
1818
build_runner: ^2.4.7
19-
source_gen: ^1.0.0
20-
analyzer: ^6.3.0
19+
source_gen: ^2.0.0
20+
analyzer: ^7.3.0
2121
build: ^2.0.0
2222
json_serializable_kt_typehelpers: ^4.0.0
2323
json_serializable_built_typehelpers: ^4.0.0

builders/json_serializable_mobx/CHANGELOG.md

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,25 @@
1+
# Changelog
2+
3+
## 1.0.1
4+
5+
- Update analyzer to ^7.3.0
6+
- Update source_gen to ^2.0.0
7+
8+
## 1.0.0
9+
10+
- Initial release
11+
112
## 0.10.3
213

314
- **CHORE**: update dependencies
415

516
## 0.10.2
6-
7-
- **CHORE**: update dependencies
17+
18+
- **CHORE**: update dependencies
819

920
## 0.10.1
1021

11-
- **FEAT**: analyzer 3.0.0.
22+
- **FEAT**: analyzer 3.0.0.
1223

1324
## 0.10.0
1425

@@ -19,6 +30,7 @@
1930
- json_serializable 5.0.0 support
2031

2132
## 0.7.0
33+
2234
- bump dependencies for build_runner to be compatible with latest packages
2335

2436
## 0.6.0
Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
name: json_serializable_mobx
22
description: Adding support for mobx collections for json_serializable
3-
version: 1.0.0
3+
version: 1.0.1
44
homepage: https://github.com/knaeckeKami/immutable_json_list_serializer
55

66
environment:
7-
sdk: '>=3.0.0 <4.0.0'
7+
sdk: ">=3.0.0 <4.0.0"
88

99
dev_dependencies:
1010
test: ^1.16.8
1111
mobx: ^2.0.1
1212
lints: ^2.0.0
1313

1414
dependencies:
15-
json_serializable: ^6.0.1
16-
json_annotation: ^4.3.0
15+
json_serializable: ^6.0.1
16+
json_annotation: ^4.3.0
1717
build_runner: ^2.4.7
18-
analyzer: ^6.3.0
19-
source_gen: ^1.0.2
18+
analyzer: ^7.3.0
19+
source_gen: ^2.0.0
2020
build: ^2.0.0
2121
json_serializable_mobx_typehelpers: ^4.0.0

typehelpers/json_serializable_built_typehelpers/CHANGELOG.md

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,25 @@
1+
# Changelog
2+
3+
## 4.0.1
4+
5+
- Update analyzer to ^7.3.0
6+
- Update source_gen to ^2.0.0
7+
8+
## 4.0.0
9+
10+
- Initial release with Dart 3 support
11+
112
## 3.1.2
213

3-
- **CHORE**: update dependencies
14+
- **CHORE**: update dependencies
415

516
## 3.1.1
617

718
- **CHORE**: lints, analyzer
819

920
## 3.1.0
1021

11-
- **FEAT**: analyzer 3.0.0.
22+
- **FEAT**: analyzer 3.0.0.
1223

1324
## 3.0.0
1425

typehelpers/json_serializable_built_typehelpers/pubspec.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
name: json_serializable_built_typehelpers
22
description: typehelpers for built_collection, used for json_serializable.
3-
version: 4.0.0
3+
version: 4.0.1
44
homepage: https://github.com/knaeckeKami/json_serializable_immutable_collections/tree/master/
55

66
environment:
7-
sdk: '>=3.0.0 <4.0.0'
7+
sdk: ">=3.0.0 <4.0.0"
88

99
dependencies:
1010
built_collection: ^5.0.0
1111
json_serializable_type_helper_utils: ^6.0.0
12-
source_gen: ^1.0.0
13-
analyzer: ^6.3.0
12+
source_gen: ^2.0.0
13+
analyzer: ^7.3.0
1414

1515
dev_dependencies:
1616
lints: ^2.0.0

typehelpers/json_serializable_fic_typehelpers/CHANGELOG.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,21 @@
1+
# Changelog
2+
3+
## 2.1.3
4+
5+
- Update analyzer to ^7.3.0
6+
- Update source_gen to ^2.0.0
7+
18
## 2.1.2
29

3-
- **CHORE**: update dependencies
10+
- Previous version
411

512
## 2.1.1
613

714
- **CHORE**: lints, analyzer
815

916
## 2.1.0
1017

11-
- **FEAT**: analyzer 3.0.0.
18+
- **FEAT**: analyzer 3.0.0.
1219

1320
## 2.0.0
1421

typehelpers/json_serializable_fic_typehelpers/pubspec.yaml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,17 @@
11
name: json_serializable_fic_typehelpers
22
description: typehelpers for fast_immutable_collections for json_serializable
3-
version: 2.1.2
3+
version: 2.1.3
44
homepage: https://github.com/knaeckeKami/json_serializable_immutable_collections/tree/master/
55

6-
76
environment:
8-
sdk: '>=3.0.0 <4.0.0'
7+
sdk: ">=3.0.0 <4.0.0"
98

109
dependencies:
11-
source_gen: ^1.0.0
10+
source_gen: ^2.0.0
1211
fast_immutable_collections: ^2.0.2
1312
json_serializable: ^6.0.1
1413
json_serializable_type_helper_utils: ^6.0.0
15-
analyzer: ^6.3.0
14+
analyzer: ^7.3.0
1615

1716
dev_dependencies:
1817
lints: ^2.0.0

0 commit comments

Comments
 (0)