@@ -12,9 +12,38 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
1212
1313## Unreleased
1414
15+ ### Removed
16+ * Removed custom_typings for Polymer as they are no longer needed
17+ (https://github.com/Polymer/lit-element/issues/186 ).
18+
19+ ## [ 0.6.0] - 2018-09-13
20+
1521### Added
1622* Added ` @query() ` , ` @queryAll() ` , and ` @customElement ` decorators ([ #159 ] ( https://github.com/Polymer/lit-element/pull/159 ) )
1723
24+ ### Changed
25+ * Significantly changed update/render lifecycle and property API. Render lifecycle
26+ is now ` requestUpdate ` , ` shouldUpdate ` , ` update ` , ` render ` , ` firstUpdated `
27+ (first time only), ` updated ` , ` updateComplete ` . Property options are now
28+ ` {attribute, reflect, type, hasChanged} ` . Properties may be defined in a
29+ ` static get properties ` or using the ` @property ` decorator.
30+ (https://github.com/Polymer/lit-element/pull/132 ).
31+
32+
33+ ### Removed
34+ * Removed render helpers ` classString ` and ` styleString ` . Similar directives
35+ (` classMap ` and ` styleMap ` ) have been added to lit-html and should be used instead
36+ (https://github.com/Polymer/lit-element/pull/165 and
37+ https://github.com/Polymer/lit-html/pull/486 ).
38+
39+ ### Fixed
40+ * The ` npm run checksize ` command should now return the correct minified size
41+ (https://github.com/Polymer/lit-element/pull/153 ).
42+ * The ` firstUpdated ` method should now always be called the first time the element
43+ updates, even if ` shouldUpdate ` initially returned ` false `
44+ (https://github.com/Polymer/lit-element/pull/173 ).
45+
46+
1847<!-- ### Changed -->
1948<!-- ### Removed -->
2049<!-- ### Fixed -->
0 commit comments