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] 5 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",
"four-flies-hammer",
"fresh-weeks-trade",
"friendly-candles-relate",
"friendly-lies-camp",
"funny-wombats-argue",
"gentle-sheep-hug",
@ -137,6 +138,7 @@
"old-oranges-compete",
"olive-kangaroos-brake",
"olive-shirts-complain",
"olive-socks-kick",
"orange-dingos-poke",
"polite-dolphins-care",
"polite-pumpkins-guess",

@ -1,5 +1,13 @@
# 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
### Patch Changes

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

Loading…
Cancel
Save