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

@ -1,5 +1,13 @@
# svelte # 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 ## 5.0.0-next.192
### 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.192", "version": "5.0.0-next.193",
"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.192'; export const VERSION = '5.0.0-next.193';
export const PUBLIC_VERSION = '5'; export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save