Version Packages (next) (#12433)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/12444/head svelte@5.0.0-next.184
github-actions[bot] 2 months ago committed by GitHub
parent 879d88f612
commit b27113ddfd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -252,6 +252,7 @@
"heavy-ears-rule", "heavy-ears-rule",
"hip-balloons-begin", "hip-balloons-begin",
"hip-garlics-tap", "hip-garlics-tap",
"hip-months-breathe",
"hip-pumpkins-boil", "hip-pumpkins-boil",
"honest-buses-add", "honest-buses-add",
"honest-dragons-turn", "honest-dragons-turn",
@ -408,6 +409,7 @@
"orange-masks-exercise", "orange-masks-exercise",
"orange-yaks-protect", "orange-yaks-protect",
"orange-zoos-heal", "orange-zoos-heal",
"perfect-actors-bake",
"pink-bikes-agree", "pink-bikes-agree",
"pink-goats-promise", "pink-goats-promise",
"pink-mayflies-tie", "pink-mayflies-tie",

@ -1,5 +1,13 @@
# svelte # svelte
## 5.0.0-next.184
### Patch Changes
- fix: show correct errors for invalid runes in `.svelte.js` files ([#12432](https://github.com/sveltejs/svelte/pull/12432))
- breaking: use structuredClone inside `$state.snapshot` ([#12413](https://github.com/sveltejs/svelte/pull/12413))
## 5.0.0-next.183 ## 5.0.0-next.183
### 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.183", "version": "5.0.0-next.184",
"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.183'; export const VERSION = '5.0.0-next.184';
export const PUBLIC_VERSION = '5'; export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save