Version Packages (next) (#12805)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/12809/head svelte@5.0.0-next.217
github-actions[bot] 3 months ago committed by GitHub
parent a5d349ebe5
commit b462c8d2e9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -24,6 +24,7 @@
"beige-mirrors-listen", "beige-mirrors-listen",
"beige-rabbits-shave", "beige-rabbits-shave",
"beige-seas-share", "beige-seas-share",
"big-apes-smell",
"big-cars-serve", "big-cars-serve",
"big-eggs-flash", "big-eggs-flash",
"big-eyes-carry", "big-eyes-carry",
@ -241,6 +242,7 @@
"giant-planets-shake", "giant-planets-shake",
"giant-plants-grin", "giant-plants-grin",
"giant-roses-press", "giant-roses-press",
"gold-students-jump",
"gold-tools-nail", "gold-tools-nail",
"good-buses-reply", "good-buses-reply",
"good-cars-visit", "good-cars-visit",

@ -1,5 +1,13 @@
# svelte # svelte
## 5.0.0-next.217
### Patch Changes
- feat: deprecate `svelte:component` ([#12694](https://github.com/sveltejs/svelte/pull/12694))
- feat: treat tag with `.` as a component, even if lowercase ([#12798](https://github.com/sveltejs/svelte/pull/12798))
## 5.0.0-next.216 ## 5.0.0-next.216
### 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.216", "version": "5.0.0-next.217",
"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.216'; export const VERSION = '5.0.0-next.217';
export const PUBLIC_VERSION = '5'; export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save