Version Packages (next) (#10534)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/10544/head svelte@5.0.0-next.60
github-actions[bot] 5 months ago committed by GitHub
parent 151cdeacaf
commit 01b6543739
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -40,6 +40,7 @@
"cold-birds-own",
"cool-ants-leave",
"cool-rabbits-tickle",
"cool-roses-trade",
"cuddly-pianos-drop",
"curly-lizards-dream",
"curvy-cups-cough",
@ -59,6 +60,7 @@
"eight-steaks-shout",
"eighty-bikes-camp",
"eighty-days-cheat",
"empty-bags-heal",
"empty-bulldogs-exercise",
"empty-crabs-think",
"empty-tools-share",

@ -1,5 +1,13 @@
# svelte
## 5.0.0-next.60
### Patch Changes
- fix: improve effect over-fire on store subscription init ([#10535](https://github.com/sveltejs/svelte/pull/10535))
- fix: use init properties when exporting non-state values in prod ([#10521](https://github.com/sveltejs/svelte/pull/10521))
## 5.0.0-next.59
### Patch Changes

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

Loading…
Cancel
Save