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

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

Loading…
Cancel
Save