Version Packages (next) (#10693)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/10695/head svelte@5.0.0-next.71
github-actions[bot] 10 months ago committed by GitHub
parent 6fb64c9914
commit d577740c82
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -97,6 +97,7 @@
"gentle-sheep-hug", "gentle-sheep-hug",
"gentle-spies-happen", "gentle-spies-happen",
"giant-moons-own", "giant-moons-own",
"giant-planets-shake",
"giant-roses-press", "giant-roses-press",
"good-buses-reply", "good-buses-reply",
"good-cars-visit", "good-cars-visit",
@ -108,6 +109,7 @@
"green-eggs-approve", "green-eggs-approve",
"green-hounds-play", "green-hounds-play",
"green-tigers-judge", "green-tigers-judge",
"happy-beds-scream",
"happy-suits-film", "happy-suits-film",
"healthy-planes-vanish", "healthy-planes-vanish",
"heavy-comics-move", "heavy-comics-move",

@ -1,5 +1,13 @@
# svelte # svelte
## 5.0.0-next.71
### Patch Changes
- fix: improve namespace inference when having `{@render}` and `{@html}` tags ([#10631](https://github.com/sveltejs/svelte/pull/10631))
- fix: don't collapse whitespace within text nodes ([#10691](https://github.com/sveltejs/svelte/pull/10691))
## 5.0.0-next.70 ## 5.0.0-next.70
### 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.70", "version": "5.0.0-next.71",
"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.70'; export const VERSION = '5.0.0-next.71';
export const PUBLIC_VERSION = '5'; export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save