OLD | NEW |
1 # changelog | 1 # changelog |
2 | 2 |
3 This file contains highlights of what changes on each version of the observe | 3 This file contains highlights of what changes on each version of the observe |
4 package. | 4 package. |
5 | 5 |
| 6 #### Pub version 0.10.0+3 |
| 7 * minor changes to documentation, deprecated `discardListChages` in favor of |
| 8 `discardListChanges` (the former had a typo). |
| 9 |
6 #### Pub version 0.10.0 | 10 #### Pub version 0.10.0 |
7 * package:observe no longer declares @MirrorsUsed. The package uses mirrors | 11 * package:observe no longer declares @MirrorsUsed. The package uses mirrors |
8 for development time, but assumes frameworks (like polymer) and apps that | 12 for development time, but assumes frameworks (like polymer) and apps that |
9 use it directly will either generate code that replaces the use of mirrors, | 13 use it directly will either generate code that replaces the use of mirrors, |
10 or add the @MirrorsUsed declaration themselves. For convinience, you can | 14 or add the @MirrorsUsed declaration themselves. For convinience, you can |
11 import 'package:observe/mirrors_used.dart', and that will add a @MirrorsUsed | 15 import 'package:observe/mirrors_used.dart', and that will add a @MirrorsUsed |
12 annotation that preserves properties and classes labeled with @reflectable | 16 annotation that preserves properties and classes labeled with @reflectable |
13 and properties labeled with @observable. | 17 and properties labeled with @observable. |
OLD | NEW |