Skip to content

Commit 693b2f0

Browse files
committed
Incremented version number.
1 parent bce8f21 commit 693b2f0

File tree

3 files changed

+18
-2
lines changed

3 files changed

+18
-2
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
## 0.5.1
2+
- Added the following built-in types that are supported without the
3+
need to register a decoder:
4+
* `bool`, `double`, `int`, `num`,`String`, `Type`, `Symbol`,
5+
* `List<bool>`, `List<double>`, `List<int>`, `List<num>`,
6+
`List<String>`,`List<Symbol>`,`List<Type>`,
7+
* `Set<bool>`, `Set<double>`, `Set<int>`, `Set<num>`, `Set<String>`, `Set<Symbol>`,
8+
`Set<Type>`,
9+
* `Iterable<bool>`,`Iterable<double>`,`Iterable<int>`,`Iterable<num>`,`Iterable<String>`,
10+
`Iterable<Symbol>`,`Iterable<Type>`.
11+
- Added `EnumDecoder`.
12+
- Added `RecoderDecoder`.
13+
14+
115
## 0.5.0
216
- Breaking changes:
317
* The extension `GenericReader` was renamed `Reader`

example/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
The files located in the folder *bin* contain short programs that demonstrate how
66
to:
77
* read a [DartObject][DartObject] representing an enum,
8+
* read a compile-time constant representig a record,
89
* read a nested list,
910
* create a decoder for a user defined class.
1011

pubspec.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
name: generic_reader
22

3-
description: Methods for the systematic reading of compile-time constant expressions.
3+
description: Methods for the systematic reading of
4+
compile-time constant expressions.
45

5-
version: 0.5.0
6+
version: 0.5.1
67

78
homepage: https://github.com/simphotonics/generic_reader
89

0 commit comments

Comments
 (0)