| OLD | NEW |
| 1 ## 0.5.1 |
| 2 |
| 3 * Added support for more types of expressions in constructor annotations. More |
| 4 specifically, any const expressions that evaluate to a `String`, `int`, |
| 5 `double`, or `bool` are now allowed. The evaluated value is what will be inlined |
| 6 in the bootstrap file in this case. |
| 7 |
| 8 |
| 1 ## 0.5.0 | 9 ## 0.5.0 |
| 2 | 10 |
| 3 * The `InitializePluginTransformer` is gone in favor of a new | 11 * The `InitializePluginTransformer` is gone in favor of a new |
| 4 `InitializerPlugin` class which you can pass a list of to the | 12 `InitializerPlugin` class which you can pass a list of to the |
| 5 `InitializeTransformer`. These plugins now have access to the fully resolved ast | 13 `InitializeTransformer`. These plugins now have access to the fully resolved ast |
| 6 nodes and can directly control what is output in the bootstrap file. | 14 nodes and can directly control what is output in the bootstrap file. |
| 7 | 15 |
| 8 ## 0.4.0 | 16 ## 0.4.0 |
| 9 | 17 |
| 10 Lots of transformer updates: | 18 Lots of transformer updates: |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 | 57 |
| 50 ## 0.1.0+1 | 58 ## 0.1.0+1 |
| 51 | 59 |
| 52 Quick fix for the transformer on windows. | 60 Quick fix for the transformer on windows. |
| 53 | 61 |
| 54 ## 0.1.0 | 62 ## 0.1.0 |
| 55 | 63 |
| 56 Initial beta release. There is one notable missing feature in the release | 64 Initial beta release. There is one notable missing feature in the release |
| 57 regarding constructor arguments, see | 65 regarding constructor arguments, see |
| 58 [5](https://github.com/dart-lang/initialize/issues/5). | 66 [5](https://github.com/dart-lang/initialize/issues/5). |
| OLD | NEW |