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

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

Loading…
Cancel
Save