Version Packages (next) (#12478)

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

@ -77,11 +77,13 @@
"clever-rockets-burn", "clever-rockets-burn",
"clever-sloths-push", "clever-sloths-push",
"clever-stingrays-shout", "clever-stingrays-shout",
"clever-toys-laugh",
"cold-beans-tease", "cold-beans-tease",
"cold-birds-own", "cold-birds-own",
"cold-cheetahs-judge", "cold-cheetahs-judge",
"cold-lamps-accept", "cold-lamps-accept",
"cold-masks-learn", "cold-masks-learn",
"cold-shrimps-hug",
"cold-teachers-turn", "cold-teachers-turn",
"cool-actors-tan", "cool-actors-tan",
"cool-ants-leave", "cool-ants-leave",
@ -424,6 +426,7 @@
"pink-mayflies-tie", "pink-mayflies-tie",
"plenty-clouds-reply", "plenty-clouds-reply",
"plenty-elephants-fry", "plenty-elephants-fry",
"plenty-items-build",
"plenty-starfishes-dress", "plenty-starfishes-dress",
"plenty-zoos-fix", "plenty-zoos-fix",
"polite-dolphins-care", "polite-dolphins-care",

@ -1,5 +1,15 @@
# svelte # svelte
## 5.0.0-next.190
### Patch Changes
- fix: hydrate multiple `<svelte:head>` elements correctly ([#12475](https://github.com/sveltejs/svelte/pull/12475))
- fix: assign correct scope to attributes of named slot ([#12476](https://github.com/sveltejs/svelte/pull/12476))
- breaking: warn on quoted single-expression attributes in runes mode ([#12479](https://github.com/sveltejs/svelte/pull/12479))
## 5.0.0-next.189 ## 5.0.0-next.189
### 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.189", "version": "5.0.0-next.190",
"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.189'; export const VERSION = '5.0.0-next.190';
export const PUBLIC_VERSION = '5'; export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save