Version Packages (next) (#9847)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/9849/head svelte@5.0.0-next.22
github-actions[bot] 7 months ago committed by GitHub
parent 56d8c0fd3a
commit b90b14645b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -17,6 +17,7 @@
"chilled-pumas-invite",
"chilly-dolphins-lick",
"clean-eels-beg",
"clever-rockets-burn",
"cold-birds-own",
"cool-ants-leave",
"cuddly-pianos-drop",
@ -39,6 +40,7 @@
"friendly-lies-camp",
"funny-wombats-argue",
"gentle-sheep-hug",
"giant-roses-press",
"good-pianos-jump",
"great-icons-retire",
"green-eggs-approve",
@ -72,6 +74,7 @@
"odd-schools-wait",
"odd-shoes-cheat",
"old-flies-jog",
"old-mails-sneeze",
"polite-dolphins-care",
"polite-pumpkins-guess",
"polite-ravens-study",

@ -1,5 +1,15 @@
# svelte
## 5.0.0-next.22
### Patch Changes
- fix: handle event hoisting props referencing ([#9846](https://github.com/sveltejs/svelte/pull/9846))
- fix: support dynamic transition functions ([#9844](https://github.com/sveltejs/svelte/pull/9844))
- fix: ensure action function returns object ([#9848](https://github.com/sveltejs/svelte/pull/9848))
## 5.0.0-next.21
### Patch Changes

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

Loading…
Cancel
Save