Version Packages (next) (#12786)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
safari-borking-2 svelte@5.0.0-next.212
github-actions[bot] 5 months ago committed by GitHub
parent 7de3e3b703
commit 9ff33f1346
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -53,6 +53,7 @@
"bright-snakes-sing", "bright-snakes-sing",
"brown-geckos-fry", "brown-geckos-fry",
"brown-houses-obey", "brown-houses-obey",
"brown-insects-float",
"brown-months-fry", "brown-months-fry",
"brown-spoons-boil", "brown-spoons-boil",
"calm-buses-clap", "calm-buses-clap",
@ -193,6 +194,7 @@
"fluffy-colts-grin", "fluffy-colts-grin",
"fluffy-dolls-share", "fluffy-dolls-share",
"fluffy-humans-worry", "fluffy-humans-worry",
"fluffy-kings-complain",
"fluffy-ravens-juggle", "fluffy-ravens-juggle",
"forty-bikes-buy", "forty-bikes-buy",
"forty-comics-invent", "forty-comics-invent",
@ -767,6 +769,7 @@
"wicked-hairs-cheer", "wicked-hairs-cheer",
"wicked-wasps-allow", "wicked-wasps-allow",
"wicked-ways-reply", "wicked-ways-reply",
"wicked-years-drive",
"wild-cows-chew", "wild-cows-chew",
"wild-foxes-wonder", "wild-foxes-wonder",
"wild-moose-compare", "wild-moose-compare",

@ -1,5 +1,15 @@
# svelte # svelte
## 5.0.0-next.212
### Patch Changes
- perf: speed up $.exclude_from_object ([#12783](https://github.com/sveltejs/svelte/pull/12783))
- chore: publish package provenance info ([#12779](https://github.com/sveltejs/svelte/pull/12779))
- feat: simplify derived object destructuring ([#12781](https://github.com/sveltejs/svelte/pull/12781))
## 5.0.0-next.211 ## 5.0.0-next.211
### 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.211", "version": "5.0.0-next.212",
"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.211'; export const VERSION = '5.0.0-next.212';
export const PUBLIC_VERSION = '5'; export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save