Version Packages (next) (#9530)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/9532/head svelte@5.0.0-next.7
github-actions[bot] 2 years ago committed by GitHub
parent b0588d7888
commit 5458ea7735
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -23,11 +23,13 @@
"funny-wombats-argue", "funny-wombats-argue",
"good-pianos-jump", "good-pianos-jump",
"honest-icons-change", "honest-icons-change",
"hungry-dots-fry",
"itchy-lions-wash", "itchy-lions-wash",
"khaki-mails-draw", "khaki-mails-draw",
"lazy-spiders-think", "lazy-spiders-think",
"lucky-schools-hang", "lucky-schools-hang",
"moody-owls-cry", "moody-owls-cry",
"odd-needles-joke",
"poor-eggs-enjoy", "poor-eggs-enjoy",
"quiet-camels-mate", "quiet-camels-mate",
"rich-sheep-burn", "rich-sheep-burn",
@ -40,6 +42,7 @@
"strong-lemons-provide", "strong-lemons-provide",
"tall-shrimps-worry", "tall-shrimps-worry",
"thirty-flowers-sit", "thirty-flowers-sit",
"thirty-ghosts-fix",
"tiny-kings-whisper", "tiny-kings-whisper",
"wicked-doors-train" "wicked-doors-train"
] ]

@ -1,5 +1,15 @@
# svelte # svelte
## 5.0.0-next.7
### Patch Changes
- chore: more signal perf tuning ([#9531](https://github.com/sveltejs/svelte/pull/9531))
- fix: address intro transition bugs ([#9528](https://github.com/sveltejs/svelte/pull/9528))
- chore: tweak signals for better runtime perf ([#9529](https://github.com/sveltejs/svelte/pull/9529))
## 5.0.0-next.6 ## 5.0.0-next.6
### 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.6", "version": "5.0.0-next.7",
"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.6'; export const VERSION = '5.0.0-next.7';
export const PUBLIC_VERSION = '5'; export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save