Version Packages (next) (#11121)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/11125/head svelte@5.0.0-next.98
github-actions[bot] 3 months ago committed by GitHub
parent b01af747e8
commit 37b689b320
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -26,6 +26,7 @@
"blue-ants-raise",
"blue-rules-juggle",
"blue-timers-film",
"brave-gorillas-end",
"brave-points-sleep",
"brave-shrimps-kiss",
"brave-walls-destroy",
@ -413,6 +414,7 @@
"witty-steaks-dream",
"witty-tomatoes-care",
"witty-years-crash",
"yellow-taxis-double"
"yellow-taxis-double",
"young-masks-refuse"
]
}

@ -1,5 +1,13 @@
# svelte
## 5.0.0-next.98
### Patch Changes
- fix: use keys for hmr modules ([#11123](https://github.com/sveltejs/svelte/pull/11123))
- fix: addresses reactive Set bug in certain engines ([#11120](https://github.com/sveltejs/svelte/pull/11120))
## 5.0.0-next.97
### Patch Changes

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

Loading…
Cancel
Save