Version Packages (next) (#10977)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/10987/head svelte@5.0.0-next.88
github-actions[bot] 5 months ago committed by GitHub
parent 227945d242
commit ef0191a6ae
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -31,6 +31,7 @@
"breezy-carrots-flash", "breezy-carrots-flash",
"bright-peas-juggle", "bright-peas-juggle",
"bright-snakes-sing", "bright-snakes-sing",
"brown-houses-obey",
"brown-months-fry", "brown-months-fry",
"brown-spoons-boil", "brown-spoons-boil",
"calm-ravens-sneeze", "calm-ravens-sneeze",
@ -188,6 +189,7 @@
"nasty-yaks-peel", "nasty-yaks-peel",
"neat-boats-shake", "neat-boats-shake",
"neat-dingos-clap", "neat-dingos-clap",
"neat-files-rescue",
"nervous-spoons-relax", "nervous-spoons-relax",
"new-boats-wait", "new-boats-wait",
"new-rabbits-flow", "new-rabbits-flow",

@ -1,5 +1,13 @@
# svelte # svelte
## 5.0.0-next.88
### Patch Changes
- fix: further improvements to effect scheduling and flushing ([#10971](https://github.com/sveltejs/svelte/pull/10971))
- feat: re-export built-ins from `svelte/reactivity` on the server ([#10973](https://github.com/sveltejs/svelte/pull/10973))
## 5.0.0-next.87 ## 5.0.0-next.87
### 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.87", "version": "5.0.0-next.88",
"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.87'; export const VERSION = '5.0.0-next.88';
export const PUBLIC_VERSION = '5'; export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save