Skip to content

Commit e88e010

Browse files
Version Packages
1 parent 1c7ed55 commit e88e010

File tree

5 files changed

+12
-16
lines changed

5 files changed

+12
-16
lines changed

.changeset/eight-emus-allow.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/thick-trains-unite.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

packages/svelte/CHANGELOG.md

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# svelte
22

3+
## 4.0.1
4+
5+
### Patch Changes
6+
7+
- fix: ensure identifiers in destructuring contexts don't clash with existing ones ([#8840](https://github.com/sveltejs/svelte/pull/8840))
8+
9+
- fix: remove tsconfig.json from published package ([#8859](https://github.com/sveltejs/svelte/pull/8859))
10+
311
## 4.0.0
412

513
### Major Changes
@@ -24,8 +32,8 @@
2432

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

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

3038
- 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))
3139

@@ -49,7 +57,6 @@
4957

5058
### Minor Changes
5159

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

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

7178
### Patch Changes
7279

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

7682
- Allow `$store` to be used with changing values including nullish values ([#7555](https://github.com/sveltejs/svelte/issues/7555))

packages/svelte/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "svelte",
3-
"version": "4.0.0",
3+
"version": "4.0.1",
44
"description": "Cybernetically enhanced web apps",
55
"type": "module",
66
"module": "src/runtime/index.js",

packages/svelte/src/shared/version.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@
66
* https://svelte.dev/docs/svelte-compiler#svelte-version
77
* @type {string}
88
*/
9-
export const VERSION = '4.0.0';
9+
export const VERSION = '4.0.1';
1010
export const PUBLIC_VERSION = '4';

0 commit comments

Comments
 (0)