Version Packages (next) (#12459)

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

@ -277,6 +277,7 @@
"itchy-bulldogs-tan", "itchy-bulldogs-tan",
"itchy-eels-marry", "itchy-eels-marry",
"itchy-kings-deliver", "itchy-kings-deliver",
"itchy-lemons-punch",
"itchy-lions-wash", "itchy-lions-wash",
"itchy-panthers-shave", "itchy-panthers-shave",
"itchy-peaches-compare", "itchy-peaches-compare",
@ -694,6 +695,7 @@
"wet-pears-remain", "wet-pears-remain",
"wet-wombats-repeat", "wet-wombats-repeat",
"wicked-bikes-matter", "wicked-bikes-matter",
"wicked-carrots-explain",
"wicked-clouds-exercise", "wicked-clouds-exercise",
"wicked-doors-train", "wicked-doors-train",
"wicked-emus-drive", "wicked-emus-drive",

@ -1,5 +1,13 @@
# svelte # svelte
## 5.0.0-next.187
### Patch Changes
- fix: always pass original component to HMR wrapper ([#12454](https://github.com/sveltejs/svelte/pull/12454))
- fix: ensure previous transitions are properly aborted ([#12460](https://github.com/sveltejs/svelte/pull/12460))
## 5.0.0-next.186 ## 5.0.0-next.186
### 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.186", "version": "5.0.0-next.187",
"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.186'; export const VERSION = '5.0.0-next.187';
export const PUBLIC_VERSION = '5'; export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save