Version Packages (next) (#12307)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/12317/head svelte@5.0.0-next.175
github-actions[bot] 2 months ago committed by GitHub
parent b3c002a703
commit ed6084806d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -521,6 +521,7 @@
"small-sheep-type",
"small-spiders-fail",
"smart-cherries-leave",
"smart-fans-crash",
"smart-grapes-mate",
"smart-parents-swim",
"smart-spiders-fetch",
@ -647,6 +648,7 @@
"violet-mugs-behave",
"violet-pigs-jam",
"warm-cherries-shake",
"warm-waves-reply",
"weak-drinks-speak",
"weak-frogs-bow",
"weak-terms-destroy",

@ -1,5 +1,13 @@
# svelte
## 5.0.0-next.175
### Patch Changes
- fix: correctly compile $effect.root in svelte modules ([#12315](https://github.com/sveltejs/svelte/pull/12315))
- fix: ensure `bind:this` works with component with no return value ([#12290](https://github.com/sveltejs/svelte/pull/12290))
## 5.0.0-next.174
### Patch Changes

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

Loading…
Cancel
Save