Skip to content

Commit

Permalink
Version Packages
Browse files Browse the repository at this point in the history
  • Loading branch information
lit-robot committed Apr 15, 2024
1 parent ab77cc9 commit b0f6e0d
Show file tree
Hide file tree
Showing 17 changed files with 34 additions and 24 deletions.
5 changes: 0 additions & 5 deletions .changeset/fluffy-garlics-smash.md

This file was deleted.

2 changes: 0 additions & 2 deletions .changeset/plenty-ligers-own.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/young-roses-fly.md

This file was deleted.

6 changes: 6 additions & 0 deletions packages/context/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @lit-labs/context

## 1.1.1

### Patch Changes

- [#4614](https://github.com/lit/lit/pull/4614) [`ab77cc9c`](https://github.com/lit/lit/commit/ab77cc9c83a67b60b42e77cf736fefbc6503f824) - Fix context types to be compatible with WCCG context protocol types.

## 1.1.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/context/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@lit/context",
"version": "1.1.0",
"version": "1.1.1",
"description": "Helpers and controllers for using Context protocol",
"license": "BSD-3-Clause",
"homepage": "https://lit.dev/",
Expand Down
2 changes: 1 addition & 1 deletion packages/labs/cli/src/lib/lit-version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const litVersion = '3.1.2';
export const litVersion = '3.1.3';
2 changes: 1 addition & 1 deletion packages/labs/cli/test-goldens/init/js-named/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"lit"
],
"dependencies": {
"lit": "^3.1.2"
"lit": "^3.1.3"
},
"devDependencies": {
"@web/dev-server": "^0.1.32"
Expand Down
2 changes: 1 addition & 1 deletion packages/labs/cli/test-goldens/init/js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"lit"
],
"dependencies": {
"lit": "^3.1.2"
"lit": "^3.1.3"
},
"devDependencies": {
"@web/dev-server": "^0.1.32"
Expand Down
2 changes: 1 addition & 1 deletion packages/labs/cli/test-goldens/init/ts-named/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"lit"
],
"dependencies": {
"lit": "^3.1.2"
"lit": "^3.1.3"
},
"devDependencies": {
"@web/dev-server": "^0.1.32",
Expand Down
6 changes: 6 additions & 0 deletions packages/lit-element/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

## 4.0.5

### Patch Changes

- [#4570](https://github.com/lit/lit/pull/4570) [`bd881370`](https://github.com/lit/lit/commit/bd881370b83d366f7654dd510731242a68949a20) - Fix the lit-html marker length to be consistently 9 characters.

## 4.0.4

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/lit-element/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "lit-element",
"version": "4.0.4",
"version": "4.0.5",
"publishConfig": {
"access": "public"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/lit-element/src/lit-element.ts
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ export const _$LE = {

// IMPORTANT: do not change the property name or the assignment expression.
// This line will be used in regexes to search for LitElement usage.
(globalThis.litElementVersions ??= []).push('4.0.4');
(globalThis.litElementVersions ??= []).push('4.0.5');
if (DEV_MODE && globalThis.litElementVersions.length > 1) {
issueWarning!(
'multiple-versions',
Expand Down
6 changes: 6 additions & 0 deletions packages/lit-html/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

## 3.1.3

### Patch Changes

- [#4570](https://github.com/lit/lit/pull/4570) [`bd881370`](https://github.com/lit/lit/commit/bd881370b83d366f7654dd510731242a68949a20) - Fix the lit-html marker length to be consistently 9 characters.

## 3.1.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/lit-html/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "lit-html",
"version": "3.1.2",
"version": "3.1.3",
"description": "HTML templates literals in JavaScript",
"license": "BSD-3-Clause",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion packages/lit-html/src/lit-html.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2161,7 +2161,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.
(global.litHtmlVersions ??= []).push('3.1.2');
(global.litHtmlVersions ??= []).push('3.1.3');
if (DEV_MODE && global.litHtmlVersions.length > 1) {
issueWarning!(
'multiple-versions',
Expand Down
6 changes: 6 additions & 0 deletions packages/lit/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

## 3.1.3

### Patch Changes

- [#4570](https://github.com/lit/lit/pull/4570) [`bd881370`](https://github.com/lit/lit/commit/bd881370b83d366f7654dd510731242a68949a20) - Fix the lit-html marker length to be consistently 9 characters.

## 3.1.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/lit/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "lit",
"version": "3.1.2",
"version": "3.1.3",
"publishConfig": {
"access": "public"
},
Expand Down

0 comments on commit b0f6e0d

Please sign in to comment.