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

@ -1,5 +1,13 @@
# svelte # 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 ## 5.0.0-next.25
### 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.25", "version": "5.0.0-next.26",
"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.25'; export const VERSION = '5.0.0-next.26';
export const PUBLIC_VERSION = '5'; export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save