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

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

Loading…
Cancel
Save