diff --git a/.changeset/curly-cars-peel.md b/.changeset/curly-cars-peel.md deleted file mode 100644 index c0aa3fbe16..0000000000 --- a/.changeset/curly-cars-peel.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -'lit-html': patch -'lit': patch ---- - -Lit's `async-directive` now re-exports everything from the `directive` module. diff --git a/.changeset/forty-bats-draw.md b/.changeset/forty-bats-draw.md deleted file mode 100644 index a845151cc8..0000000000 --- a/.changeset/forty-bats-draw.md +++ /dev/null @@ -1,2 +0,0 @@ ---- ---- diff --git a/.changeset/four-rocks-pretend.md b/.changeset/four-rocks-pretend.md deleted file mode 100644 index 06e8f18605..0000000000 --- a/.changeset/four-rocks-pretend.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@lit-labs/testing': patch ---- - -Make resolved paths sent to worker be file urls. Fixes incompatibility with Windows filepaths. diff --git a/.changeset/spotty-ducks-compete.md b/.changeset/spotty-ducks-compete.md deleted file mode 100644 index a845151cc8..0000000000 --- a/.changeset/spotty-ducks-compete.md +++ /dev/null @@ -1,2 +0,0 @@ ---- ---- diff --git a/packages/labs/testing/CHANGELOG.md b/packages/labs/testing/CHANGELOG.md index 1644a43bb8..4a9ae35635 100644 --- a/packages/labs/testing/CHANGELOG.md +++ b/packages/labs/testing/CHANGELOG.md @@ -1,5 +1,11 @@ # @lit-labs/testing +## 0.1.1 + +### Patch Changes + +- [#3175](https://github.com/lit/lit/pull/3175) [`27e08e5d`](https://github.com/lit/lit/commit/27e08e5d71af85fb5e38bbd968d7a7cb14c12193) - Make resolved paths sent to worker be file urls. Fixes incompatibility with Windows filepaths. + ## 0.1.0 ### Minor Changes diff --git a/packages/labs/testing/package.json b/packages/labs/testing/package.json index d92bf4d1bc..a268c19a35 100644 --- a/packages/labs/testing/package.json +++ b/packages/labs/testing/package.json @@ -1,6 +1,6 @@ { "name": "@lit-labs/testing", - "version": "0.1.0", + "version": "0.1.1", "publishConfig": { "access": "public" }, diff --git a/packages/lit-html/CHANGELOG.md b/packages/lit-html/CHANGELOG.md index fa4637d9e7..cc41a9ed2b 100644 --- a/packages/lit-html/CHANGELOG.md +++ b/packages/lit-html/CHANGELOG.md @@ -1,5 +1,11 @@ # Change Log +## 2.2.8 + +### Patch Changes + +- [#3003](https://github.com/lit/lit/pull/3003) [`daddeb34`](https://github.com/lit/lit/commit/daddeb346a2f454b25a6a5d1722683197f25fbcd) - Lit's `async-directive` now re-exports everything from the `directive` module. + ## 2.2.7 ### Patch Changes diff --git a/packages/lit-html/package.json b/packages/lit-html/package.json index 893d22ae8f..d0bb1b2d97 100644 --- a/packages/lit-html/package.json +++ b/packages/lit-html/package.json @@ -1,6 +1,6 @@ { "name": "lit-html", - "version": "2.2.7", + "version": "2.2.8", "description": "HTML templates literals in JavaScript", "license": "BSD-3-Clause", "repository": { diff --git a/packages/lit-html/src/lit-html.ts b/packages/lit-html/src/lit-html.ts index 021378689f..4b551fa62d 100644 --- a/packages/lit-html/src/lit-html.ts +++ b/packages/lit-html/src/lit-html.ts @@ -2153,7 +2153,7 @@ polyfillSupport?.(Template, ChildPart); // IMPORTANT: do not change the property name or the assignment expression. // This line will be used in regexes to search for lit-html usage. -(globalThis.litHtmlVersions ??= []).push('2.2.7'); +(globalThis.litHtmlVersions ??= []).push('2.2.8'); if (DEV_MODE && globalThis.litHtmlVersions.length > 1) { issueWarning!( 'multiple-versions', diff --git a/packages/lit/CHANGELOG.md b/packages/lit/CHANGELOG.md index 4c63b09752..4f60297cb0 100644 --- a/packages/lit/CHANGELOG.md +++ b/packages/lit/CHANGELOG.md @@ -1,5 +1,11 @@ # Change Log +## 2.2.9 + +### Patch Changes + +- [#3003](https://github.com/lit/lit/pull/3003) [`daddeb34`](https://github.com/lit/lit/commit/daddeb346a2f454b25a6a5d1722683197f25fbcd) - Lit's `async-directive` now re-exports everything from the `directive` module. + ## 2.2.8 ### Patch Changes diff --git a/packages/lit/package.json b/packages/lit/package.json index 36851640a3..4d91a01a2c 100644 --- a/packages/lit/package.json +++ b/packages/lit/package.json @@ -1,6 +1,6 @@ { "name": "lit", - "version": "2.2.8", + "version": "2.2.9", "publishConfig": { "access": "public" },