| OLD | NEW |
| 1 #### 0.10.1 |
| 2 * Added the `CustomElementProxy` annotation. This can be added to any class |
| 3 which proxies a javascript custom element and is the equivalent of calling |
| 4 `registerDartType`. In order to use this you will need to be using the |
| 5 `initialize` package, and call its `run` method from your main function. It |
| 6 is also recommended that you include the transformer from that package to |
| 7 remove the use of mirrors at runtime, see |
| 8 [initialize](https://github.com/dart-lang/initialize) for more information. |
| 9 |
| 1 #### 0.10.0 | 10 #### 0.10.0 |
| 2 * Updated to the `0.5.1` js version. | 11 * Updated to the `0.5.1` js version. |
| 3 * **Breaking Change** To remain consistent with the js repository all the | 12 * **Breaking Change** To remain consistent with the js repository all the |
| 4 `platform.js` has been replaced with `webcomponents.js`. Also, the default | 13 `platform.js` has been replaced with `webcomponents.js`. Also, the default |
| 5 file is now unminified, and the minified version is called | 14 file is now unminified, and the minified version is called |
| 6 `webcomponents.min.js`. | 15 `webcomponents.min.js`. |
| 7 | 16 |
| 8 #### 0.9.0+1 | 17 #### 0.9.0+1 |
| 9 * Remove all `.map` and `.concat.js` files during release mode. | 18 * Remove all `.map` and `.concat.js` files during release mode. |
| 10 | 19 |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 * Reverts back to what we had in 0.3.4. (The platform.js updates in 0.3.5 had | 86 * Reverts back to what we had in 0.3.4. (The platform.js updates in 0.3.5 had |
| 78 breaking changes so we are republishing it in 0.4.0) | 87 breaking changes so we are republishing it in 0.4.0) |
| 79 | 88 |
| 80 #### 0.3.5 | 89 #### 0.3.5 |
| 81 * Added `registerDartType` to register a Dart API for a custom-element written | 90 * Added `registerDartType` to register a Dart API for a custom-element written |
| 82 in Javascript. | 91 in Javascript. |
| 83 * Updated to platform 0.3.3-29065bc | 92 * Updated to platform 0.3.3-29065bc |
| 84 | 93 |
| 85 #### 0.3.4 | 94 #### 0.3.4 |
| 86 * Updated to platform 0.2.4 (see lib/build.log for details) | 95 * Updated to platform 0.2.4 (see lib/build.log for details) |
| OLD | NEW |