2.2.2+1
This commit is contained in:
parent
532301432a
commit
b4e357efe3
3 changed files with 10 additions and 1 deletions
|
@ -1,3 +1,6 @@
|
||||||
|
# 2.2.2+1
|
||||||
|
* Export commonly-used packages, for the sake of convenience.
|
||||||
|
|
||||||
# 2.2.2
|
# 2.2.2
|
||||||
* Add `HasAlias`, `DefaultsTo`, `nullable` idioms.
|
* Add `HasAlias`, `DefaultsTo`, `nullable` idioms.
|
||||||
* `isNullable` defaults to `false` now.
|
* `isNullable` defaults to `false` now.
|
||||||
|
|
|
@ -1,3 +1,6 @@
|
||||||
|
export 'package:angel_model/angel_model.dart';
|
||||||
|
export 'package:collection/collection.dart';
|
||||||
|
export 'package:meta/meta.dart' show required, Required;
|
||||||
export 'package:quiver_hashcode/hashcode.dart' show hashObjects;
|
export 'package:quiver_hashcode/hashcode.dart' show hashObjects;
|
||||||
|
|
||||||
/// Excludes a field from being excluded.
|
/// Excludes a field from being excluded.
|
||||||
|
|
|
@ -1,9 +1,12 @@
|
||||||
name: angel_serialize
|
name: angel_serialize
|
||||||
version: 2.2.2
|
version: 2.2.2+1
|
||||||
description: Static annotations powering Angel model serialization. Combine with angel_serialize_generator for flexible modeling.
|
description: Static annotations powering Angel model serialization. Combine with angel_serialize_generator for flexible modeling.
|
||||||
author: Tobe O <thosakwe@gmail.com>
|
author: Tobe O <thosakwe@gmail.com>
|
||||||
homepage: https://github.com/angel-dart/serialize
|
homepage: https://github.com/angel-dart/serialize
|
||||||
environment:
|
environment:
|
||||||
sdk: '>=2.0.0-dev <3.0.0'
|
sdk: '>=2.0.0-dev <3.0.0'
|
||||||
dependencies:
|
dependencies:
|
||||||
|
angel_model: ^1.0.0
|
||||||
|
collection: ^1.0.0
|
||||||
|
meta: ^1.0.0
|
||||||
quiver_hashcode: ^2.0.0
|
quiver_hashcode: ^2.0.0
|
||||||
|
|
Loading…
Reference in a new issue