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