Version Packages (next) (#12667)

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

@ -365,6 +365,7 @@
"lovely-zebras-own", "lovely-zebras-own",
"lucky-colts-remember", "lucky-colts-remember",
"lucky-geckos-swim", "lucky-geckos-swim",
"lucky-panthers-chew",
"lucky-schools-hang", "lucky-schools-hang",
"lucky-teachers-exist", "lucky-teachers-exist",
"lucky-toes-begin", "lucky-toes-begin",
@ -729,6 +730,8 @@
"violet-otters-carry", "violet-otters-carry",
"violet-pigs-jam", "violet-pigs-jam",
"warm-cherries-shake", "warm-cherries-shake",
"warm-cycles-call",
"warm-planets-cry",
"warm-waves-reply", "warm-waves-reply",
"weak-drinks-speak", "weak-drinks-speak",
"weak-frogs-bow", "weak-frogs-bow",

@ -1,5 +1,15 @@
# svelte # svelte
## 5.0.0-next.203
### Patch Changes
- chore: internal compiler refactoring ([#12651](https://github.com/sveltejs/svelte/pull/12651))
- fix: widen `ComponentProps` constraint to accept more component shapes ([#12666](https://github.com/sveltejs/svelte/pull/12666))
- feat: make `<svelte:component>` unnecessary in runes mode ([#12646](https://github.com/sveltejs/svelte/pull/12646))
## 5.0.0-next.202 ## 5.0.0-next.202
### 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.202", "version": "5.0.0-next.203",
"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.202'; export const VERSION = '5.0.0-next.203';
export const PUBLIC_VERSION = '5'; export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save