Version Packages (next) (#11186)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/11190/head svelte@5.0.0-next.105
github-actions[bot] 3 months ago committed by GitHub
parent 18097478fc
commit 30fa876a79
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -52,6 +52,7 @@
"clean-eels-beg",
"clever-chefs-relate",
"clever-rockets-burn",
"clever-sloths-push",
"cold-birds-own",
"cold-masks-learn",
"cool-ants-leave",
@ -285,6 +286,7 @@
"rotten-rules-invite",
"rude-ghosts-tickle",
"selfish-dragons-knock",
"selfish-socks-smile",
"selfish-spies-help",
"selfish-tools-hide",
"serious-gorillas-eat",

@ -1,5 +1,13 @@
# svelte
## 5.0.0-next.105
### Patch Changes
- breaking: remove unstate(), replace with $state.snapshot rune ([#11180](https://github.com/sveltejs/svelte/pull/11180))
- fix: more accurate default value handling ([#11183](https://github.com/sveltejs/svelte/pull/11183))
## 5.0.0-next.104
### Patch Changes

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

Loading…
Cancel
Save