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

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

Loading…
Cancel
Save