Version Packages (next) (#10995)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/11005/head svelte@5.0.0-next.90
github-actions[bot] 5 months ago committed by GitHub
parent 7bd853b1a8
commit 57813124d8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -289,6 +289,7 @@
"small-papayas-laugh", "small-papayas-laugh",
"small-sheep-type", "small-sheep-type",
"small-spiders-fail", "small-spiders-fail",
"smart-cherries-leave",
"smart-parents-swim", "smart-parents-swim",
"smart-turkeys-tell", "smart-turkeys-tell",
"smart-zebras-pay", "smart-zebras-pay",
@ -321,6 +322,7 @@
"swift-donkeys-perform", "swift-donkeys-perform",
"swift-fans-stare", "swift-fans-stare",
"swift-feet-juggle", "swift-feet-juggle",
"swift-poets-carry",
"swift-ravens-hunt", "swift-ravens-hunt",
"swift-seahorses-deliver", "swift-seahorses-deliver",
"tall-books-grin", "tall-books-grin",

@ -1,5 +1,13 @@
# svelte # svelte
## 5.0.0-next.90
### Patch Changes
- fix: hydrate HTML with surrounding whitespace ([#10996](https://github.com/sveltejs/svelte/pull/10996))
- feat: faster HTML tags ([#10986](https://github.com/sveltejs/svelte/pull/10986))
## 5.0.0-next.89 ## 5.0.0-next.89
### 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.89", "version": "5.0.0-next.90",
"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.89'; export const VERSION = '5.0.0-next.90';
export const PUBLIC_VERSION = '5'; export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save