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

@ -1,5 +1,15 @@
# svelte # 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 ## 5.0.0-next.180
### 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.180", "version": "5.0.0-next.181",
"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.180'; export const VERSION = '5.0.0-next.181';
export const PUBLIC_VERSION = '5'; export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save