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

@ -1,5 +1,19 @@
# 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
### Patch Changes

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

Loading…
Cancel
Save