Version Packages (next) (#12106)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/12116/head
github-actions[bot] 2 weeks ago committed by GitHub
parent 361d33e60f
commit 35c73417e6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -187,6 +187,7 @@
"fuzzy-bags-camp",
"fuzzy-donuts-provide",
"gentle-dolls-juggle",
"gentle-eagles-walk",
"gentle-sheep-hug",
"gentle-spies-happen",
"gentle-ties-fetch",
@ -205,6 +206,7 @@
"good-plums-type",
"good-rivers-yawn",
"good-roses-argue",
"gorgeous-boxes-design",
"gorgeous-hats-wonder",
"gorgeous-monkeys-carry",
"gorgeous-singers-rest",
@ -219,6 +221,7 @@
"grumpy-jars-sparkle",
"happy-beds-scream",
"happy-dogs-jump",
"happy-lobsters-lick",
"happy-suits-film",
"healthy-ants-film",
"healthy-planes-vanish",
@ -597,6 +600,7 @@
"twelve-dragons-join",
"twelve-onions-juggle",
"twelve-worms-jog",
"twenty-gifts-develop",
"two-brooms-fail",
"two-candles-move",
"two-dogs-accept",

@ -1,5 +1,17 @@
# svelte
## 5.0.0-next.161
### Patch Changes
- fix: wait a microtask for await blocks to reduce UI churn ([#11989](https://github.com/sveltejs/svelte/pull/11989))
- fix: ensure state update expressions are serialised correctly ([#12109](https://github.com/sveltejs/svelte/pull/12109))
- fix: repair each block length even without an else ([#12098](https://github.com/sveltejs/svelte/pull/12098))
- fix: remove document event listeners on unmount ([#12105](https://github.com/sveltejs/svelte/pull/12105))
## 5.0.0-next.160
### Patch Changes

@ -2,7 +2,7 @@
"name": "svelte",
"description": "Cybernetically enhanced web apps",
"license": "MIT",
"version": "5.0.0-next.160",
"version": "5.0.0-next.161",
"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.160';
export const VERSION = '5.0.0-next.161';
export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save