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

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

Loading…
Cancel
Save