Skip to content

Commit 27b4346

Browse files
authored
Upgrade to Lit 2 final and latest MWC elements and release (#209)
* Upgrade deps and docs to lit 2 final * Prepare release v0.14.0
1 parent 76227dc commit 27b4346

File tree

6 files changed

+275
-249
lines changed

6 files changed

+275
-249
lines changed

CHANGELOG.md

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

20-
## Unreleased
20+
<!-- ## Unreleased -->
21+
22+
## [0.14.0] - 2021-09-20
2123

2224
### Changed
2325

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ from unpkg.com at the latest version.
264264
import {html} from 'lit';
265265

266266
// What playground serves:
267-
import {html} from './node_modules/lit@2.0.0-rc.4/index.js';
267+
import {html} from './node_modules/lit@2.0.0/index.js';
268268

269269
// What playground fetches behind-the-scenes:
270270
// https://unpkg.com/lit@latest
@@ -280,7 +280,7 @@ map. This works exactly like it does when using NPM locally.
280280
```json
281281
{
282282
"dependencies": {
283-
"lit": "^2.0.0-rc.4"
283+
"lit": "^2.0.0"
284284
}
285285
}
286286
```
@@ -309,8 +309,8 @@ module:
309309
"files": { ... },
310310
"importMap": {
311311
"imports": {
312-
"lit": "https://cdn.skypack.dev/lit@^2.0.0-rc.4",
313-
"lit/": "https://cdn.skypack.dev/lit@^2.0.0-rc.4/"
312+
"lit": "https://cdn.skypack.dev/lit@^2.0.0",
313+
"lit/": "https://cdn.skypack.dev/lit@^2.0.0/"
314314
}
315315
}
316316
}
@@ -323,8 +323,8 @@ When using inline project files, you can specify your import map like so:
323323
<script type="sample/importmap">
324324
{
325325
"imports": {
326-
"lit": "https://cdn.skypack.dev/lit@^2.0.0-rc.4,
327-
"lit/": "https://cdn.skypack.dev/lit@^2.0.0-rc.4/"
326+
"lit": "https://cdn.skypack.dev/lit@^2.0.0,
327+
"lit/": "https://cdn.skypack.dev/lit@^2.0.0/"
328328
}
329329
}
330330
</script>

configurator/project/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"dependencies": {
3-
"lit": "^2.0.0-rc.2",
4-
"@lit/reactive-element": "^1.0.0-rc.2",
5-
"lit-element": "^3.0.0-rc.2",
6-
"lit-html": "^2.0.0-rc.3"
3+
"lit": "^2.0.0",
4+
"@lit/reactive-element": "^1.0.0",
5+
"lit-element": "^3.0.0",
6+
"lit-html": "^2.0.0"
77
}
88
}

0 commit comments

Comments
 (0)