Skip to content

Commit 4c67fd8

Browse files
Version Packages (next)
1 parent 5702142 commit 4c67fd8

File tree

4 files changed

+20
-4
lines changed

4 files changed

+20
-4
lines changed

.changeset/pre.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,15 @@
88
},
99
"changesets": [
1010
"beige-boxes-rhyme",
11+
"eighty-tigers-rhyme",
1112
"fair-geese-repeat",
1213
"gentle-pumas-chew",
1314
"green-sheep-learn",
1415
"mighty-suns-occur",
16+
"odd-wasps-smoke",
17+
"smart-kangaroos-tell",
1518
"stale-cougars-wink",
16-
"tame-peaches-destroy"
19+
"tame-peaches-destroy",
20+
"yellow-squids-explain"
1721
]
1822
}

packages/svelte/CHANGELOG.md

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

3+
## 4.0.0-next.3
4+
5+
### Patch Changes
6+
7+
- feat: smaller minified output for destructor chunks ([#8763](https://github.com/sveltejs/svelte/pull/8763))
8+
9+
- breaking: use `CustomEvent` constructor instead of deprecated `createEvent` method ([#8775](https://github.com/sveltejs/svelte/pull/8775))
10+
11+
- chore: deindent cjs output for compiler ([#8785](https://github.com/sveltejs/svelte/pull/8785))
12+
13+
- feat: add version info to `window`. You can opt out by setting `discloseVersion` to `false` in the compiler options ([#8761](https://github.com/sveltejs/svelte/pull/8761))
14+
315
## 4.0.0-next.2
416

517
### Patch Changes
@@ -69,7 +81,7 @@
6981

7082
## 3.59.2
7183

72-
* Fix escaping `<textarea bind:value={...}>` values in SSR
84+
- Fix escaping `<textarea bind:value={...}>` values in SSR
7385

7486
## 3.59.1
7587

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-next.2",
3+
"version": "4.0.0-next.3",
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-next.2';
9+
export const VERSION = '4.0.0-next.3';
1010
export const PUBLIC_VERSION = '4';

0 commit comments

Comments
 (0)