Version Packages (next) (#13074)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/13084/head svelte@5.0.0-next.242
github-actions[bot] 3 weeks ago committed by GitHub
parent 0203eb319b
commit 2af9b193ce
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -500,6 +500,7 @@
"orange-dingos-poke", "orange-dingos-poke",
"orange-laws-drop", "orange-laws-drop",
"orange-masks-exercise", "orange-masks-exercise",
"orange-sheep-exist",
"orange-yaks-protect", "orange-yaks-protect",
"orange-zoos-heal", "orange-zoos-heal",
"perfect-actors-bake", "perfect-actors-bake",
@ -562,6 +563,7 @@
"red-doors-own", "red-doors-own",
"red-feet-worry", "red-feet-worry",
"red-kings-draw", "red-kings-draw",
"red-maps-nail",
"red-poets-study", "red-poets-study",
"red-pots-pretend", "red-pots-pretend",
"rich-cobras-exist", "rich-cobras-exist",

@ -1,5 +1,13 @@
# svelte # svelte
## 5.0.0-next.242
### Patch Changes
- fix: insert comment before text in an each block, to prevent glued nodes ([#13073](https://github.com/sveltejs/svelte/pull/13073))
- feat: better generated each block code in SSR mode ([#13060](https://github.com/sveltejs/svelte/pull/13060))
## 5.0.0-next.241 ## 5.0.0-next.241
### Patch Changes ### Patch Changes

@ -2,7 +2,7 @@
"name": "svelte", "name": "svelte",
"description": "Cybernetically enhanced web apps", "description": "Cybernetically enhanced web apps",
"license": "MIT", "license": "MIT",
"version": "5.0.0-next.241", "version": "5.0.0-next.242",
"type": "module", "type": "module",
"types": "./types/index.d.ts", "types": "./types/index.d.ts",
"engines": { "engines": {

@ -6,5 +6,5 @@
* https://svelte.dev/docs/svelte-compiler#svelte-version * https://svelte.dev/docs/svelte-compiler#svelte-version
* @type {string} * @type {string}
*/ */
export const VERSION = '5.0.0-next.241'; export const VERSION = '5.0.0-next.242';
export const PUBLIC_VERSION = '5'; export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save