Version Packages (next) (#12613)

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

@ -180,6 +180,7 @@
"fifty-masks-give",
"fifty-rice-wait",
"fifty-steaks-float",
"fifty-toys-invite",
"five-tigers-search",
"flat-feet-visit",
"flat-ghosts-fly",
@ -626,6 +627,7 @@
"strong-gifts-smoke",
"strong-lemons-provide",
"strong-pans-doubt",
"stupid-bottles-lay",
"stupid-parents-crash",
"sweet-bottles-check",
"sweet-mangos-beg",
@ -720,6 +722,7 @@
"unlucky-trees-lick",
"violet-mails-trade",
"violet-mugs-behave",
"violet-otters-carry",
"violet-pigs-jam",
"warm-cherries-shake",
"warm-waves-reply",

@ -1,5 +1,15 @@
# svelte
## 5.0.0-next.200
### Patch Changes
- fix: never set custom element props as attributes inside templates ([#12622](https://github.com/sveltejs/svelte/pull/12622))
- feat: better code generation for `let:` directives in SSR mode ([#12611](https://github.com/sveltejs/svelte/pull/12611))
- fix: correctly update stores when reassigning with operator other than `=` ([#12614](https://github.com/sveltejs/svelte/pull/12614))
## 5.0.0-next.199
### Patch Changes

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

Loading…
Cancel
Save