Version Packages (next) (#12387)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/12397/head svelte@5.0.0-next.181
github-actions[bot] 2 months ago committed by GitHub
parent b2d106b67d
commit 898fe30efe
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -14,6 +14,7 @@
"afraid-kids-hide",
"afraid-moose-matter",
"afraid-worms-drum",
"angry-birds-fly",
"angry-books-jam",
"angry-plums-punch",
"angry-wasps-help",
@ -236,6 +237,7 @@
"happy-beds-scream",
"happy-dogs-jump",
"happy-lobsters-lick",
"happy-moles-live",
"happy-suits-film",
"healthy-ants-film",
"healthy-planes-vanish",
@ -413,6 +415,7 @@
"polite-peas-mate",
"polite-pumpkins-guess",
"polite-ravens-study",
"polite-tomatoes-trade",
"polite-ways-serve",
"poor-eggs-enjoy",
"poor-hats-design",

@ -1,5 +1,15 @@
# svelte
## 5.0.0-next.181
### Patch Changes
- fix: reflect SvelteURLSearchParams changes to SvelteURL ([#12285](https://github.com/sveltejs/svelte/pull/12285))
- fix: ensure hmr block effects are transparent for transitions ([#12384](https://github.com/sveltejs/svelte/pull/12384))
- feat: simpler HMR logic ([#12391](https://github.com/sveltejs/svelte/pull/12391))
## 5.0.0-next.180
### Patch Changes

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

Loading…
Cancel
Save