Version Packages (next) (#13110)

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

@ -128,6 +128,7 @@
"dirty-donuts-yell", "dirty-donuts-yell",
"dirty-eyes-itch", "dirty-eyes-itch",
"dirty-garlics-design", "dirty-garlics-design",
"dirty-jars-tap",
"dirty-pens-look", "dirty-pens-look",
"dirty-pianos-eat", "dirty-pianos-eat",
"dirty-tips-add", "dirty-tips-add",
@ -306,6 +307,7 @@
"healthy-mangos-brush", "healthy-mangos-brush",
"healthy-planes-vanish", "healthy-planes-vanish",
"healthy-zebras-accept", "healthy-zebras-accept",
"heavy-cars-ring",
"heavy-comics-move", "heavy-comics-move",
"heavy-doors-applaud", "heavy-doors-applaud",
"heavy-ducks-leave", "heavy-ducks-leave",
@ -344,6 +346,7 @@
"itchy-kings-deliver", "itchy-kings-deliver",
"itchy-lemons-punch", "itchy-lemons-punch",
"itchy-lions-wash", "itchy-lions-wash",
"itchy-oranges-behave",
"itchy-panthers-shave", "itchy-panthers-shave",
"itchy-peaches-compare", "itchy-peaches-compare",
"itchy-pianos-marry", "itchy-pianos-marry",
@ -508,6 +511,7 @@
"orange-yaks-protect", "orange-yaks-protect",
"orange-zoos-heal", "orange-zoos-heal",
"perfect-actors-bake", "perfect-actors-bake",
"perfect-cooks-shop",
"perfect-hairs-matter", "perfect-hairs-matter",
"perfect-hats-dance", "perfect-hats-dance",
"perfect-pugs-shake", "perfect-pugs-shake",
@ -542,6 +546,7 @@
"popular-roses-teach", "popular-roses-teach",
"popular-walls-hunt", "popular-walls-hunt",
"pretty-ties-help", "pretty-ties-help",
"proud-lobsters-lie",
"proud-pets-hang", "proud-pets-hang",
"proud-queens-sniff", "proud-queens-sniff",
"purple-dragons-peel", "purple-dragons-peel",

@ -1,5 +1,19 @@
# svelte # svelte
## 5.0.0-next.244
### Patch Changes
- fix: error on duplicate style and class directive ([#13097](https://github.com/sveltejs/svelte/pull/13097))
- fix: ensure $host rune correctly compiles in variable declarations ([#13127](https://github.com/sveltejs/svelte/pull/13127))
- fix: remove unnecessary update assignments ([#13113](https://github.com/sveltejs/svelte/pull/13113))
- fix: error at compile time on unsupported TypeScript language features ([#12982](https://github.com/sveltejs/svelte/pull/12982))
- fix: Ensure imports are above other statements ([#13132](https://github.com/sveltejs/svelte/pull/13132))
## 5.0.0-next.243 ## 5.0.0-next.243
### 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.243", "version": "5.0.0-next.244",
"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.243'; export const VERSION = '5.0.0-next.244';
export const PUBLIC_VERSION = '5'; export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save