Skip to content

Commit 1385d94

Browse files
authored
Merge pull request #748 from Polymer/release-next
Release 2.2.1
2 parents 3597b38 + 633b88a commit 1385d94

File tree

4 files changed

+20
-36
lines changed

4 files changed

+20
-36
lines changed

CHANGELOG.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,18 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
1010
Unreleased section, uncommenting the header as necessary.
1111
-->
1212

13-
## Unreleased
13+
<!-- ## Unreleased -->
1414
<!-- ### Added -->
15+
<!-- ### Removed -->
16+
<!-- ### Fixed -->
17+
<!-- ### Changed -->
18+
19+
## [2.2.1] - 2019-07-23
1520
### Changed
1621
* Elements should now override the new `_getUpdateComplete` method instead of the `updateComplete` getter, for compatibility with TypeScript ES5 output, which does not support calling a superclass getter (e.g.`super.updateComplete.then(...)`) due to [TypeScript#338](https://github.com/microsoft/TypeScript/issues/338).
17-
<!-- ### Removed -->
1822
### Fixed
1923
* Fixed compatibility with Closure JS Compiler optimizations relating to static properties ([#732](https://github.com/Polymer/lit-element/issues/732)).
2024

21-
2225
## [2.2.0] - 2019-06-11
2326
### Added
2427
* css tagged template literals now allow numbers to be used in expressions ([#488](https://github.com/Polymer/lit-element/issues/488)).

package-lock.json

Lines changed: 12 additions & 31 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "lit-element",
3-
"version": "2.2.0",
3+
"version": "2.2.1",
44
"description": "A simple base class for creating fast, lightweight web components",
55
"license": "BSD-3-Clause",
66
"homepage": "https://lit-element.polymer-project.org/",

src/lit-element.ts

Lines changed: 1 addition & 1 deletion
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.2.0');
35+
.push('2.2.1');
3636

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

0 commit comments

Comments
 (0)