Skip to content

Commit

Permalink
Prepare 2.4.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
justinfagnani committed Aug 19, 2020
1 parent a21abcb commit 09b5a11
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
<!-- ### Removed -->
<!-- ### Fixed -->

## [2.4.0] - 2020-08-14
## [2.4.0] - 2020-08-19

### Changed
* Set type in package.json to "module" ([#974](https://github.com/Polymer/lit-element/pull/974))
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "lit-element",
"version": "2.4.0-pre.3",
"version": "2.4.0",
"description": "A simple base class for creating fast, lightweight web components",
"license": "BSD-3-Clause",
"homepage": "https://lit-element.polymer-project.org/",
Expand Down Expand Up @@ -75,7 +75,7 @@
}
},
"dependencies": {
"lit-html": "1.3.0-pre.1"
"lit-html": "^1.1.1"
},
"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 @@ -74,7 +74,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.4.0-pre.3');
.push('2.4.0');

export type CSSResultOrNative = CSSResult|CSSStyleSheet;

Expand Down

0 comments on commit 09b5a11

Please sign in to comment.