Version Packages (next) (#10499)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/10507/head svelte@5.0.0-next.56
github-actions[bot] 2 years ago committed by GitHub
parent 72ff5366de
commit 2a5ca51594
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -84,6 +84,7 @@
"giant-roses-press",
"good-cars-visit",
"good-pianos-jump",
"gorgeous-singers-rest",
"great-fans-unite",
"great-icons-retire",
"green-eggs-approve",
@ -216,9 +217,11 @@
"spicy-jeans-deliver",
"spicy-plums-admire",
"spotty-pens-agree",
"spotty-rocks-destroy",
"spotty-spiders-compare",
"stale-books-perform",
"stale-comics-look",
"stale-jeans-refuse",
"strange-apricots-happen",
"strong-gifts-smoke",
"strong-lemons-provide",

@ -1,5 +1,15 @@
# svelte
## 5.0.0-next.56
### Patch Changes
- feat: add hydrate method, make hydration treeshakeable ([#10497](https://github.com/sveltejs/svelte/pull/10497))
- fix: makes keyed each blocks consistent between dev and prod ([#10500](https://github.com/sveltejs/svelte/pull/10500))
- fix: subscribe to stores in `transition`,`animation`,`use` directives ([#10481](https://github.com/sveltejs/svelte/pull/10481))
## 5.0.0-next.55
### Patch Changes

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

Loading…
Cancel
Save