Version Packages (next) (#10353)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/10357/head svelte@5.0.0-next.43
github-actions[bot] 6 months ago committed by GitHub
parent 36fc203eec
commit 2a31987da5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -62,6 +62,7 @@
"five-tigers-search",
"flat-melons-protect",
"forty-comics-invent",
"forty-dolls-wave",
"forty-peaches-unite",
"four-flies-hammer",
"fresh-weeks-trade",
@ -146,6 +147,7 @@
"purple-dragons-peel",
"quiet-camels-mate",
"quiet-crabs-nail",
"quiet-timers-speak",
"rare-pears-whisper",
"real-guests-do",
"real-items-suffer",

@ -1,5 +1,13 @@
# svelte
## 5.0.0-next.43
### Patch Changes
- fix: insert empty text nodes while hydrating, if necessary ([#9729](https://github.com/sveltejs/svelte/pull/9729))
- fix: correctly update tweened store initialized with nullish value ([#10356](https://github.com/sveltejs/svelte/pull/10356))
## 5.0.0-next.42
### Patch Changes

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

Loading…
Cancel
Save