Skip to content

Commit 09b5a11

Browse files
committed
Prepare 2.4.0 release
1 parent a21abcb commit 09b5a11

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
1717
<!-- ### Removed -->
1818
<!-- ### Fixed -->
1919

20-
## [2.4.0] - 2020-08-14
20+
## [2.4.0] - 2020-08-19
2121

2222
### Changed
2323
* Set type in package.json to "module" ([#974](https://github.com/Polymer/lit-element/pull/974))

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "lit-element",
3-
"version": "2.4.0-pre.3",
3+
"version": "2.4.0",
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/",
@@ -75,7 +75,7 @@
7575
}
7676
},
7777
"dependencies": {
78-
"lit-html": "1.3.0-pre.1"
78+
"lit-html": "^1.1.1"
7979
},
8080
"publishConfig": {
8181
"access": "public"

src/lit-element.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ declare global {
7474
// This line will be used in regexes to search for LitElement usage.
7575
// TODO(justinfagnani): inject version number at build time
7676
(window['litElementVersions'] || (window['litElementVersions'] = []))
77-
.push('2.4.0-pre.3');
77+
.push('2.4.0');
7878

7979
export type CSSResultOrNative = CSSResult|CSSStyleSheet;
8080

0 commit comments

Comments
 (0)