Skip to content

Commit

Permalink
Use lit-html 1.0 (#543)
Browse files Browse the repository at this point in the history
  • Loading branch information
dfreedm authored Feb 5, 2019
1 parent 661093c commit beb6771
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
<!-- ### Changed -->
<!-- ### Removed -->
<!-- ### Fixed -->
## [2.0.1] - 2019-02-05
### Fixed
* Use `lit-html` 1.0 ([#543](https://github.com/Polymer/lit-element/pull/543)).

## [2.0.0] - 2019-02-05
### Added
* Add `toString()` function to `CSSResult` ([#508](https://github.com/Polymer/lit-element/pull/508))
Expand Down
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
},
"typings": "lit-element.d.ts",
"dependencies": {
"lit-html": "^1.0.0-rc.2"
"lit-html": "^1.0.0"
},
"publishConfig": {
"access": "public"
Expand Down
2 changes: 1 addition & 1 deletion src/lit-element.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ declare global {
// This line will be used in regexes to search for LitElement usage.
// TODO(justinfagnani): inject version number at build time
(window['litElementVersions'] || (window['litElementVersions'] = []))
.push('2.0.0');
.push('2.0.1');

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

Expand Down

0 comments on commit beb6771

Please sign in to comment.