Skip to content

Commit

Permalink
Version Packages (#3563)
Browse files Browse the repository at this point in the history
  • Loading branch information
lit-robot committed Jan 12, 2023
1 parent e5c254e commit 7754407
Show file tree
Hide file tree
Showing 19 changed files with 43 additions and 29 deletions.
6 changes: 0 additions & 6 deletions .changeset/friendly-papayas-glow.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/thick-wasps-love.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/tidy-lamps-rest.md

This file was deleted.

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 = '2.6.0';
export const litVersion = '2.6.1';
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": "^2.6.0"
"lit": "^2.6.1"
},
"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": "^2.6.0"
"lit": "^2.6.1"
},
"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": "^2.6.0"
"lit": "^2.6.1"
},
"devDependencies": {
"@web/dev-server": "^0.1.32",
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

## 2.6.1

### Patch Changes

- [#3526](https://github.com/lit/lit/pull/3526) [`65e56655`](https://github.com/lit/lit/commit/65e56655b73d22172647c1a748e7a907ad0227c0) - Disable ShadyDOM noPatch in Node dev build. This fixes the issue of throwing due to undefined `window`.

## 2.6.0

### Minor 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": "2.6.0",
"version": "2.6.1",
"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 @@ -2096,7 +2096,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('2.6.0');
(global.litHtmlVersions ??= []).push('2.6.1');
if (DEV_MODE && global.litHtmlVersions.length > 1) {
issueWarning!(
'multiple-versions',
Expand Down
6 changes: 6 additions & 0 deletions packages/lit-starter-js/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @lit/lit-starter-js

## 1.0.5

### Patch Changes

- [#3561](https://github.com/lit/lit/pull/3561) [`e5c254e9`](https://github.com/lit/lit/commit/e5c254e96cb5d0f770ec616332e231559325c5c5) - Update dependency `@rollup/plugin-replace`

## 1.0.4

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/lit-starter-js/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@lit/lit-starter-js",
"private": true,
"version": "1.0.4",
"version": "1.0.5",
"description": "A simple web component",
"main": "my-element.js",
"module": "my-element.js",
Expand Down
6 changes: 6 additions & 0 deletions packages/lit-starter-ts/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @lit/lit-starter-ts

## 1.0.5

### Patch Changes

- [#3561](https://github.com/lit/lit/pull/3561) [`e5c254e9`](https://github.com/lit/lit/commit/e5c254e96cb5d0f770ec616332e231559325c5c5) - Update dependency `@rollup/plugin-replace`

## 1.0.4

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/lit-starter-ts/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@lit/lit-starter-ts",
"private": true,
"version": "1.0.4",
"version": "1.0.5",
"description": "A simple web component",
"main": "my-element.js",
"module": "my-element.js",
Expand Down
8 changes: 8 additions & 0 deletions packages/lit/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Change Log

## 2.6.1

### Patch Changes

- [#3526](https://github.com/lit/lit/pull/3526) [`65e56655`](https://github.com/lit/lit/commit/65e56655b73d22172647c1a748e7a907ad0227c0) - Disable ShadyDOM noPatch in Node dev build. This fixes the issue of throwing due to undefined `window`.

- [#3561](https://github.com/lit/lit/pull/3561) [`e5c254e9`](https://github.com/lit/lit/commit/e5c254e96cb5d0f770ec616332e231559325c5c5) - Fix built-in shimming of `HTMLElement` for Node build of `reactive-element` to respect existing `HTMLElement` in global

## 2.6.0

### Minor 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": "2.6.0",
"version": "2.6.1",
"publishConfig": {
"access": "public"
},
Expand Down
6 changes: 6 additions & 0 deletions packages/reactive-element/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

## 1.6.1

### Patch Changes

- [#3561](https://github.com/lit/lit/pull/3561) [`e5c254e9`](https://github.com/lit/lit/commit/e5c254e96cb5d0f770ec616332e231559325c5c5) - Fix built-in shimming of `HTMLElement` for Node build of `reactive-element` to respect existing `HTMLElement` in global

## 1.6.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/reactive-element/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@lit/reactive-element",
"version": "1.6.0",
"version": "1.6.1",
"publishConfig": {
"access": "public"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/reactive-element/src/reactive-element.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1549,7 +1549,7 @@ if (DEV_MODE) {

// IMPORTANT: do not change the property name or the assignment expression.
// This line will be used in regexes to search for ReactiveElement usage.
(global.reactiveElementVersions ??= []).push('1.6.0');
(global.reactiveElementVersions ??= []).push('1.6.1');
if (DEV_MODE && global.reactiveElementVersions.length > 1) {
issueWarning!(
'multiple-versions',
Expand Down

0 comments on commit 7754407

Please sign in to comment.