OLD | NEW |
| 1 ## 0.3.0-dev |
| 2 |
| 3 * Library initializers now pass a `LibraryIdentifier` to `initialize` instead of |
| 4 just a `Symbol`. This provides the package, and path to the library in addition |
| 5 to the symbol so that paths can be normalized. |
| 6 |
1 ## 0.2.0 | 7 ## 0.2.0 |
2 | 8 |
3 * `entryPoint` and `newEntryPoint` transformer options were renamed to | 9 * `entryPoint` and `newEntryPoint` transformer options were renamed to |
4 `entry_point` and `new_entry_pont`. | 10 `entry_point` and `new_entry_pont`. |
5 | 11 |
6 * Added `html_entry_point` option to the transformer. This will search that file | 12 * Added `html_entry_point` option to the transformer. This will search that file |
7 for any script tag whose src is `entry_point` and rewrite it to point at the | 13 for any script tag whose src is `entry_point` and rewrite it to point at the |
8 bootstrapped file `new_entry_point`. | 14 bootstrapped file `new_entry_point`. |
9 | 15 |
10 * Top level properties and static class properties are now supported in | 16 * Top level properties and static class properties are now supported in |
11 initializer constructors, as well as List and Map literals, | 17 initializer constructors, as well as List and Map literals, |
12 [5](https://github.com/dart-lang/initialize/issues/5). | 18 [5](https://github.com/dart-lang/initialize/issues/5). |
13 | 19 |
14 | 20 |
15 ## 0.1.0+1 | 21 ## 0.1.0+1 |
16 | 22 |
17 Quick fix for the transformer on windows. | 23 Quick fix for the transformer on windows. |
18 | 24 |
19 ## 0.1.0 | 25 ## 0.1.0 |
20 | 26 |
21 Initial beta release. There is one notable missing feature in the release | 27 Initial beta release. There is one notable missing feature in the release |
22 regarding constructor arguments, see | 28 regarding constructor arguments, see |
23 [5](https://github.com/dart-lang/initialize/issues/5). | 29 [5](https://github.com/dart-lang/initialize/issues/5). |
OLD | NEW |