Skip to content

Commit

Permalink
Version Packages
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Jun 28, 2023
1 parent 1cfed0b commit 4a7d839
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 26 deletions.
5 changes: 0 additions & 5 deletions .changeset/eight-emus-allow.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/neat-feet-accept.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/pretty-tools-whisper.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/thick-trains-unite.md

This file was deleted.

18 changes: 14 additions & 4 deletions packages/svelte/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# svelte

## 4.0.1

### Patch Changes

- fix: ensure identifiers in destructuring contexts don't clash with existing ones ([#8840](https://github.com/sveltejs/svelte/pull/8840))

- fix: apply transition to `<svelte:element>` with local transition ([`876f894c6`](https://github.com/sveltejs/svelte/commit/876f894c6417e61aacd8d582a7900755570006b1))

- fix: relax a11y "no redundant role" rule for li, ul, ol ([`1cfed0bf2`](https://github.com/sveltejs/svelte/commit/1cfed0bf2980567787edd1d813f6ce50eaf3f033))

- fix: remove tsconfig.json from published package ([#8859](https://github.com/sveltejs/svelte/pull/8859))

## 4.0.0

### Major Changes
Expand All @@ -24,8 +36,8 @@

- breaking: Stricter types for `Action` and `ActionReturn` (see PR for migration instructions) ([#7442](https://github.com/sveltejs/svelte/pull/7442))

- breaking: Stricter types for `onMount` - now throws a type error when returning a function asynchronously to catch potential mistakes around callback functions
(see PR for migration instructions) ([#8136](https://github.com/sveltejs/svelte/pull/8136))
- breaking: Stricter types for `onMount` - now throws a type error when returning a function asynchronously to catch potential mistakes around callback functions
(see PR for migration instructions) ([#8136](https://github.com/sveltejs/svelte/pull/8136))

- breaking: Overhaul and drastically improve creating custom elements with Svelte (see PR for list of changes and migration instructions) ([#8457](https://github.com/sveltejs/svelte/pull/8457))

Expand All @@ -49,7 +61,6 @@

### Minor Changes


- Add a way to modify attributes for script/style preprocessors ([#8618](https://github.com/sveltejs/svelte/pull/8618))

- Improve hydration speed by adding `data-svelte-h` attribute to detect unchanged HTML elements ([#7426](https://github.com/sveltejs/svelte/pull/7426))
Expand All @@ -70,7 +81,6 @@

### Patch Changes


- Bind `null` option and input values consistently ([#8312](https://github.com/sveltejs/svelte/issues/8312))

- Allow `$store` to be used with changing values including nullish values ([#7555](https://github.com/sveltejs/svelte/issues/7555))
Expand Down
2 changes: 1 addition & 1 deletion packages/svelte/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "svelte",
"version": "4.0.0",
"version": "4.0.1",
"description": "Cybernetically enhanced web apps",
"type": "module",
"module": "src/runtime/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/svelte/src/shared/version.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
* https://svelte.dev/docs/svelte-compiler#svelte-version
* @type {string}
*/
export const VERSION = '4.0.0';
export const VERSION = '4.0.1';
export const PUBLIC_VERSION = '4';

0 comments on commit 4a7d839

Please sign in to comment.