Version Packages (next) (#10528)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/10535/head svelte@5.0.0-next.59
github-actions[bot] 6 months ago committed by GitHub
parent 06e1d86091
commit a279e802d5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -21,6 +21,7 @@
"big-eyes-carry", "big-eyes-carry",
"big-geese-act", "big-geese-act",
"blue-timers-film", "blue-timers-film",
"brave-points-sleep",
"brave-shrimps-kiss", "brave-shrimps-kiss",
"brave-walls-destroy", "brave-walls-destroy",
"breezy-carrots-flash", "breezy-carrots-flash",
@ -274,6 +275,7 @@
"unlucky-boxes-obey", "unlucky-boxes-obey",
"unlucky-trees-lick", "unlucky-trees-lick",
"violet-pigs-jam", "violet-pigs-jam",
"weak-terms-destroy",
"wet-games-fly", "wet-games-fly",
"wicked-clouds-exercise", "wicked-clouds-exercise",
"wicked-doors-train", "wicked-doors-train",

@ -1,5 +1,13 @@
# svelte # svelte
## 5.0.0-next.59
### Patch Changes
- chore: improve code generation for `bind:this` in SSR mode ([#10524](https://github.com/sveltejs/svelte/pull/10524))
- fix: visit expression node in directives ([#10527](https://github.com/sveltejs/svelte/pull/10527))
## 5.0.0-next.58 ## 5.0.0-next.58
### 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.58", "version": "5.0.0-next.59",
"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.58'; export const VERSION = '5.0.0-next.59';
export const PUBLIC_VERSION = '5'; export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save