Version Packages (next) (#10399)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/10400/head svelte@5.0.0-next.46
github-actions[bot] 7 months ago committed by GitHub
parent 97d3ec2f89
commit 1381d1937c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -67,6 +67,7 @@
"forty-peaches-unite", "forty-peaches-unite",
"four-flies-hammer", "four-flies-hammer",
"fresh-weeks-trade", "fresh-weeks-trade",
"friendly-candles-relate",
"friendly-lies-camp", "friendly-lies-camp",
"funny-wombats-argue", "funny-wombats-argue",
"gentle-sheep-hug", "gentle-sheep-hug",
@ -137,6 +138,7 @@
"old-oranges-compete", "old-oranges-compete",
"olive-kangaroos-brake", "olive-kangaroos-brake",
"olive-shirts-complain", "olive-shirts-complain",
"olive-socks-kick",
"orange-dingos-poke", "orange-dingos-poke",
"polite-dolphins-care", "polite-dolphins-care",
"polite-pumpkins-guess", "polite-pumpkins-guess",

@ -1,5 +1,13 @@
# svelte # svelte
## 5.0.0-next.46
### Patch Changes
- fix: allow `let:` directives on slot elements ([#10391](https://github.com/sveltejs/svelte/pull/10391))
- fix: repair each block length mismatches during hydration ([#10398](https://github.com/sveltejs/svelte/pull/10398))
## 5.0.0-next.45 ## 5.0.0-next.45
### 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.45", "version": "5.0.0-next.46",
"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.45'; export const VERSION = '5.0.0-next.46';
export const PUBLIC_VERSION = '5'; export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save