Skip to content

Commit 7c63323

Browse files
committed
Release 1.4.0
1 parent 905b373 commit 7c63323

File tree

5 files changed

+21
-7
lines changed

5 files changed

+21
-7
lines changed

generator/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# v1.4.0
2+
* Extending default types to be ignored by static mapping
3+
(https://github.com/smotastic/smartstruct/issues/74)
4+
* Nullable lists are not being mapped properly. (https://github.com/smotastic/smartstruct/issues/41)
5+
* Update to analyzer 5.0.0 (https://github.com/smotastic/smartstruct/issues/78)
6+
7+
18
# v1.3.0
29
* Bump Analyzer to 4.0.0 (Thanks to @luissalgadofreire)
310

generator/pubspec.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,7 @@ packages:
322322
name: smartstruct
323323
url: "https://pub.dartlang.org"
324324
source: hosted
325-
version: "1.3.0"
325+
version: "1.4.0"
326326
source_gen:
327327
dependency: "direct main"
328328
description:

generator/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: smartstruct_generator
22
description: smartstruct - A dart bean mapper annotation processor - the easy nullsafe way!
3-
version: 1.3.0
3+
version: 1.4.0
44
homepage: https://github.com/smotastic/smartstruct
55
environment:
66
sdk: ">=2.12.0 <3.0.0"
@@ -16,7 +16,7 @@ dependencies:
1616
path: ^1.8.1
1717
#smartstruct:
1818
# path: ../smartstruct
19-
smartstruct: ^1.3.0
19+
smartstruct: ^1.4.0
2020
source_gen: ^1.2.1
2121
#dependency_overrides:
2222
# smartstruct:

smartstruct/CHANGELOG.md

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# v1.4.0
2+
* Extending default types to be ignored by static mapping
3+
(https://github.com/smotastic/smartstruct/issues/74)
4+
* Nullable lists are not being mapped properly. (https://github.com/smotastic/smartstruct/issues/41)
5+
* Update to analyzer 5.0.0 (https://github.com/smotastic/smartstruct/issues/78)
6+
7+
18
# v1.3.0
29
* Bump Analyzer to 4.0.0 (Thanks to @luissalgadofreire)
310

@@ -46,12 +53,12 @@ Fixes:
4653

4754
# v.1.2.1
4855
- Constructors in the abstract mapper will now also be implemented by the generated mapper class (https://github.com/smotastic/smartstruct/issues/22).
49-
This should fix an issue where you cannot inject dependencies via the constructor in your mapper class.
56+
This should fix an issue where you cannot inject dependencies via the constructor in your mapper class.
5057

5158
# v1.2.0
5259
- Fixed the useInjection attribute to properly work now (https://github.com/smotastic/smartstruct/issues/19)
53-
Note that all generated files are suffixed with *.mapper.g.dart* now instead of *.g.dart*
54-
So for migration purposes you'll have to just change the *part 'foomapper.g.dart'* in your mapper files to *part 'foomapper.mapper.g.dart*
60+
Note that all generated files are suffixed with *.mapper.g.dart* now instead of *.g.dart*
61+
So for migration purposes you'll have to just change the *part 'foomapper.g.dart'* in your mapper files to *part 'foomapper.mapper.g.dart*
5562
```dart
5663
// before
5764
part 'foomapper.g.dart'

smartstruct/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: smartstruct
22
description: smartstruct - A dart bean mapper annotation processor - the easy nullsafe way!
3-
version: 1.3.0
3+
version: 1.4.0
44
homepage: https://github.com/smotastic/smartstruct
55
environment:
66
sdk: ">=2.12.0 <3.0.0"

0 commit comments

Comments
 (0)