Version Packages (next)

pull/12268/head
github-actions[bot] 5 days ago
parent 3f2dc2e7ab
commit e6831b0e9c

@ -665,6 +665,7 @@
"witty-bikes-shave", "witty-bikes-shave",
"witty-camels-warn", "witty-camels-warn",
"witty-hornets-think", "witty-hornets-think",
"witty-phones-retire",
"witty-readers-provide", "witty-readers-provide",
"witty-steaks-dream", "witty-steaks-dream",
"witty-tomatoes-care", "witty-tomatoes-care",

@ -1,5 +1,11 @@
# svelte # svelte
## 5.0.0-next.172
### Patch Changes
- fix: handle duplicate signal dependencies gracefully ([#12261](https://github.com/sveltejs/svelte/pull/12261))
## 5.0.0-next.171 ## 5.0.0-next.171
### 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.171", "version": "5.0.0-next.172",
"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.171'; export const VERSION = '5.0.0-next.172';
export const PUBLIC_VERSION = '5'; export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save