Skip to content

Commit b8b9f74

Browse files
committed
Prepare 2.3.0-pre.1 release
1 parent 38a8b85 commit b8b9f74

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

CHANGELOG.md

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

19-
## Unreleased
19+
## [2.3.0-pre.1] - 2020-03-17
2020

2121
### Changed
2222
* Added a static `getPropertyDescriptor` method to allow easier customization of property accessors. This method should return a a `PropertyDescriptor` to install on the property. If no descriptor is returned, a property accessor is not be created. ([#911](https://github.com/Polymer/lit-element/issues/911))

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.1",
3+
"version": "2.3.0-pre.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
@@ -31,7 +31,7 @@ declare global {
3131
// This line will be used in regexes to search for LitElement usage.
3232
// TODO(justinfagnani): inject version number at build time
3333
(window['litElementVersions'] || (window['litElementVersions'] = []))
34-
.push('2.2.1');
34+
.push('2.3.0-pre.1');
3535

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

0 commit comments

Comments
 (0)