Version Packages (next) (#12741)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/12742/head svelte@5.0.0-next.210
github-actions[bot] 3 months ago committed by GitHub
parent e747a6f75d
commit 98ae05b569
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -598,6 +598,7 @@
"small-planets-destroy",
"small-sheep-type",
"small-spiders-fail",
"smart-cars-know",
"smart-cherries-leave",
"smart-fans-crash",
"smart-grapes-mate",
@ -765,6 +766,7 @@
"wild-foxes-wonder",
"wild-moose-compare",
"wild-poems-design",
"wild-pumas-count",
"wise-apples-care",
"wise-dancers-hang",
"wise-dodos-tell",

@ -1,5 +1,13 @@
# svelte
## 5.0.0-next.210
### Patch Changes
- fix: avoid recreating handlers for component events ([#12722](https://github.com/sveltejs/svelte/pull/12722))
- fix: call correct event handler for properties of non-reactive objects ([#12722](https://github.com/sveltejs/svelte/pull/12722))
## 5.0.0-next.209
### Patch Changes

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

Loading…
Cancel
Save