Version Packages (next) (#11994)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/12014/head svelte@5.0.0-next.154
github-actions[bot] 7 months ago committed by GitHub
parent e27b8c5cb5
commit 2491eb7c85
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -150,6 +150,7 @@
"fifty-rice-wait",
"fifty-steaks-float",
"five-tigers-search",
"flat-feet-visit",
"flat-ghosts-fly",
"flat-melons-protect",
"flat-olives-live",
@ -172,6 +173,7 @@
"fresh-weeks-trade",
"friendly-candles-relate",
"friendly-lies-camp",
"funny-cooks-clean",
"funny-dragons-double",
"funny-ties-jump",
"funny-trees-cry",
@ -263,6 +265,7 @@
"late-crabs-lay",
"late-grapes-judge",
"late-peaches-mate",
"late-zebras-argue",
"lazy-knives-happen",
"lazy-masks-sit",
"lazy-months-knock",

@ -1,5 +1,15 @@
# svelte
## 5.0.0-next.154
### Patch Changes
- fix: ensure bound input content is resumed on hydration ([#11986](https://github.com/sveltejs/svelte/pull/11986))
- fix: better `render` type ([#11997](https://github.com/sveltejs/svelte/pull/11997))
- fix: SSR template escaping ([#12007](https://github.com/sveltejs/svelte/pull/12007))
## 5.0.0-next.153
### Patch Changes

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

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

Loading…
Cancel
Save