Version Packages (next)

pull/10693/head
github-actions[bot] 3 years ago
parent 6fb64c9914
commit 8a740e6ac7

@ -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