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

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

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

Loading…
Cancel
Save