Skip to content

Commit 44114de

Browse files
committed
Use lit-html 1.0
1 parent 65ffc3a commit 44114de

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
1313
<!-- ### Changed -->
1414
<!-- ### Removed -->
1515
<!-- ### Fixed -->
16+
## [2.0.1] - 2019-02-05
17+
### Fixed
18+
* Use `lit-html` 1.0
19+
1620
## [2.0.0] - 2019-02-05
1721
### Added
1822
* Add `toString()` function to `CSSResult` ([#508](https://github.com/Polymer/lit-element/pull/508))

package-lock.json

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
},
5858
"typings": "lit-element.d.ts",
5959
"dependencies": {
60-
"lit-html": "^1.0.0-rc.2"
60+
"lit-html": "^1.0.0"
6161
},
6262
"publishConfig": {
6363
"access": "public"

src/lit-element.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ declare global {
3232
// This line will be used in regexes to search for LitElement usage.
3333
// TODO(justinfagnani): inject version number at build time
3434
(window['litElementVersions'] || (window['litElementVersions'] = []))
35-
.push('2.0.0');
35+
.push('2.0.1');
3636

3737
export interface CSSResultArray extends Array<CSSResult|CSSResultArray> {}
3838

0 commit comments

Comments
 (0)