Version Packages (next) (#10589)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/10598/head svelte@5.0.0-next.65
github-actions[bot] 8 months ago committed by GitHub
parent ec52c75cc4
commit d2b11ec4da
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -117,6 +117,7 @@
"itchy-kings-deliver",
"itchy-lions-wash",
"itchy-terms-guess",
"khaki-cooks-develop",
"khaki-mails-draw",
"khaki-moose-arrive",
"kind-baboons-approve",
@ -200,6 +201,7 @@
"rich-waves-mix",
"rotten-bags-type",
"rotten-buckets-develop",
"rotten-experts-relax",
"selfish-dragons-knock",
"selfish-tools-hide",
"serious-kids-deliver",
@ -242,6 +244,7 @@
"spotty-pens-agree",
"spotty-rocks-destroy",
"spotty-spiders-compare",
"spotty-turkeys-sparkle",
"stale-books-perform",
"stale-comics-look",
"stale-jeans-refuse",
@ -305,6 +308,7 @@
"witty-camels-warn",
"witty-steaks-dream",
"witty-tomatoes-care",
"witty-years-crash"
"witty-years-crash",
"yellow-taxis-double"
]
}

@ -1,5 +1,17 @@
# svelte
## 5.0.0-next.65
### Patch Changes
- fix: improve $inspect handling of derived objects ([#10584](https://github.com/sveltejs/svelte/pull/10584))
- fix: permit whitespace within template scripts ([#10591](https://github.com/sveltejs/svelte/pull/10591))
- fix: allow boolean `contenteditable` attribute ([#10590](https://github.com/sveltejs/svelte/pull/10590))
- fix: improve import event handler support ([#10592](https://github.com/sveltejs/svelte/pull/10592))
## 5.0.0-next.64
### Patch Changes

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

Loading…
Cancel
Save