Version Packages (next) (#12515)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/12527/head svelte@5.0.0-next.193
github-actions[bot] 4 months ago committed by GitHub
parent ff080cbbdc
commit ca2f02c23e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -185,6 +185,7 @@
"fluffy-dolls-share",
"fluffy-humans-worry",
"fluffy-ravens-juggle",
"forty-bikes-buy",
"forty-comics-invent",
"forty-dogs-divide",
"forty-dolls-wave",
@ -193,6 +194,7 @@
"four-balloons-beam",
"four-flies-hammer",
"four-mice-hammer",
"four-papayas-turn",
"four-pugs-listen",
"fresh-beds-wash",
"fresh-dots-destroy",

@ -1,5 +1,13 @@
# svelte
## 5.0.0-next.193
### Patch Changes
- fix: improve validation error that occurs when using `{@render ...}` to render default slotted content ([#12521](https://github.com/sveltejs/svelte/pull/12521))
- fix: reset hydrate node after `hydrate(...)` ([#12512](https://github.com/sveltejs/svelte/pull/12512))
## 5.0.0-next.192
### Patch Changes

@ -2,7 +2,7 @@
"name": "svelte",
"description": "Cybernetically enhanced web apps",
"license": "MIT",
"version": "5.0.0-next.192",
"version": "5.0.0-next.193",
"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.192';
export const VERSION = '5.0.0-next.193';
export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save