Version Packages (next) (#12650)

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

@ -382,6 +382,7 @@
"mighty-shoes-nail",
"modern-apricots-promise",
"modern-fishes-double",
"modern-peaches-cheer",
"moody-carrots-lay",
"moody-frogs-exist",
"moody-ghosts-buy",
@ -747,6 +748,7 @@
"wild-cows-chew",
"wild-foxes-wonder",
"wild-moose-compare",
"wild-poems-design",
"wise-apples-care",
"wise-dancers-hang",
"wise-dodos-tell",

@ -1,5 +1,13 @@
# svelte
## 5.0.0-next.202
### Patch Changes
- fix: remove implicit passive behavior from OnDirective events ([#12645](https://github.com/sveltejs/svelte/pull/12645))
- fix: always set draggable through `setAttribute` to avoid weird behavior ([#12649](https://github.com/sveltejs/svelte/pull/12649))
## 5.0.0-next.201
### Patch Changes

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

Loading…
Cancel
Save