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

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

Loading…
Cancel
Save