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

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

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

Loading…
Cancel
Save