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

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

Loading…
Cancel
Save