Version Packages (next) (#9642)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/9649/head svelte@5.0.0-next.13
github-actions[bot] 1 year ago committed by GitHub
parent 7f237c2e41
commit 66d540d3c5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -12,6 +12,7 @@
"afraid-moose-matter",
"brave-walls-destroy",
"brown-spoons-boil",
"chilled-pumas-invite",
"chilly-dolphins-lick",
"clean-eels-beg",
"cold-birds-own",
@ -39,6 +40,7 @@
"lazy-spiders-think",
"long-crews-return",
"lovely-items-turn",
"lovely-rules-eat",
"lucky-schools-hang",
"moody-frogs-exist",
"moody-owls-cry",
@ -64,6 +66,7 @@
"thirty-flowers-sit",
"thirty-ghosts-fix",
"thirty-impalas-repair",
"thirty-wombats-relax",
"tiny-kings-whisper",
"two-falcons-buy",
"wet-games-fly",

@ -1,5 +1,15 @@
# svelte
## 5.0.0-next.13
### Patch Changes
- fix: apply keyed validation only for keyed each ([#9641](https://github.com/sveltejs/svelte/pull/9641))
- fix: omit this bind this arg if we know it's not a signal ([#9635](https://github.com/sveltejs/svelte/pull/9635))
- fix: improve each block index handling ([#9644](https://github.com/sveltejs/svelte/pull/9644))
## 5.0.0-next.12
### Patch Changes

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

Loading…
Cancel
Save