Version Packages (next) (#10479)

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

@ -67,6 +67,7 @@
"fifty-steaks-float", "fifty-steaks-float",
"five-tigers-search", "five-tigers-search",
"flat-melons-protect", "flat-melons-protect",
"fluffy-humans-worry",
"forty-comics-invent", "forty-comics-invent",
"forty-dolls-wave", "forty-dolls-wave",
"forty-peaches-unite", "forty-peaches-unite",
@ -145,6 +146,7 @@
"odd-taxis-retire", "odd-taxis-retire",
"old-flies-jog", "old-flies-jog",
"old-houses-drum", "old-houses-drum",
"old-jokes-deliver",
"old-mails-sneeze", "old-mails-sneeze",
"old-oranges-compete", "old-oranges-compete",
"olive-kangaroos-brake", "olive-kangaroos-brake",
@ -192,6 +194,7 @@
"shiny-shrimps-march", "shiny-shrimps-march",
"short-buses-camp", "short-buses-camp",
"silent-apes-report", "silent-apes-report",
"silly-laws-happen",
"silver-points-approve", "silver-points-approve",
"sixty-items-crash", "sixty-items-crash",
"slimy-clouds-talk", "slimy-clouds-talk",

@ -1,5 +1,15 @@
# svelte # svelte
## 5.0.0-next.55
### Patch Changes
- feat: derive destructured derived objects values ([#10488](https://github.com/sveltejs/svelte/pull/10488))
- fix: prevent infinite loop when writing to store using shorthand ([#10477](https://github.com/sveltejs/svelte/pull/10477))
- fix: add proper source map support ([#10459](https://github.com/sveltejs/svelte/pull/10459))
## 5.0.0-next.54 ## 5.0.0-next.54
### 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.54", "version": "5.0.0-next.55",
"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.54'; export const VERSION = '5.0.0-next.55';
export const PUBLIC_VERSION = '5'; export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save