Version Packages (next) (#9922)

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

@ -70,6 +70,7 @@
"lemon-geese-drum",
"light-pens-watch",
"long-crews-return",
"lovely-carpets-lick",
"lovely-items-turn",
"lovely-rules-eat",
"lucky-schools-hang",
@ -92,6 +93,7 @@
"purple-dragons-peel",
"quiet-camels-mate",
"rare-pears-whisper",
"real-guests-do",
"rich-sheep-burn",
"rich-tables-sing",
"rotten-bags-type",

@ -1,5 +1,13 @@
# svelte
## 5.0.0-next.26
### Patch Changes
- fix: better handle array property deletion reactivity ([#9921](https://github.com/sveltejs/svelte/pull/9921))
- fix: improve event delegation handler hoisting ([#9929](https://github.com/sveltejs/svelte/pull/9929))
## 5.0.0-next.25
### Patch Changes

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

Loading…
Cancel
Save