Version Packages (next) (#10934)

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

@ -70,6 +70,7 @@
"eight-steaks-shout",
"eighty-bikes-camp",
"eighty-days-cheat",
"eleven-beers-yell",
"eleven-cycles-applaud",
"empty-bags-heal",
"empty-bulldogs-exercise",
@ -82,6 +83,7 @@
"famous-knives-sneeze",
"famous-pants-pay",
"fast-weeks-clean",
"few-clouds-shop",
"few-mugs-fail",
"fifty-rice-wait",
"fifty-steaks-float",
@ -126,6 +128,7 @@
"honest-buses-add",
"honest-dragons-turn",
"honest-icons-change",
"hot-jobs-tap",
"hungry-boxes-relate",
"hungry-dots-fry",
"hungry-singers-share",
@ -340,6 +343,7 @@
"thirty-wombats-relax",
"three-camels-sell",
"three-icons-trade",
"three-lions-visit",
"three-papayas-buy",
"three-suits-grin",
"tidy-buses-whisper",

@ -1,5 +1,17 @@
# svelte
## 5.0.0-next.85
### Patch Changes
- feat: use implicit return for each block keys ([#10938](https://github.com/sveltejs/svelte/pull/10938))
- breaking: always run pre effects immediately ([#10928](https://github.com/sveltejs/svelte/pull/10928))
- fix: improve order of pre-effect execution ([#10942](https://github.com/sveltejs/svelte/pull/10942))
- feat: more efficient each block compiler output ([#10937](https://github.com/sveltejs/svelte/pull/10937))
## 5.0.0-next.84
### Patch Changes

@ -2,7 +2,7 @@
"name": "svelte",
"description": "Cybernetically enhanced web apps",
"license": "MIT",
"version": "5.0.0-next.84",
"version": "5.0.0-next.85",
"type": "module",
"types": "./types/index.d.ts",
"engines": {

@ -6,5 +6,5 @@
* https://svelte.dev/docs/svelte-compiler#svelte-version
* @type {string}
*/
export const VERSION = '5.0.0-next.84';
export const VERSION = '5.0.0-next.85';
export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save