Version Packages (next) (#10324)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/10326/head svelte@5.0.0-next.41
github-actions[bot] 2 years ago committed by GitHub
parent d9a6b8b17a
commit d31ccf3be3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -15,6 +15,7 @@
"beige-flies-wash",
"beige-rabbits-shave",
"big-cars-serve",
"big-eyes-carry",
"blue-timers-film",
"brave-shrimps-kiss",
"brave-walls-destroy",
@ -118,6 +119,7 @@
"nasty-lions-double",
"nasty-yaks-peel",
"neat-dingos-clap",
"nervous-spoons-relax",
"new-boats-wait",
"ninety-dingos-walk",
"odd-buckets-lie",

@ -1,5 +1,13 @@
# svelte
## 5.0.0-next.41
### Patch Changes
- fix: handle event delegation correctly when having sibling event listeners ([#10307](https://github.com/sveltejs/svelte/pull/10307))
- chore: add $derived.call rune ([#10240](https://github.com/sveltejs/svelte/pull/10240))
## 5.0.0-next.40
### Patch Changes

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

Loading…
Cancel
Save