Version Packages (next) (#12408)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/12433/head svelte@5.0.0-next.183
github-actions[bot] 4 months ago committed by GitHub
parent 51f12d243d
commit 7ea418b2f8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -505,6 +505,7 @@
"short-buses-camp",
"short-countries-rush",
"shy-fishes-drive",
"shy-scissors-smile",
"silent-apes-report",
"silent-hats-stare",
"silent-rabbits-join",
@ -655,6 +656,7 @@
"tough-buckets-thank",
"tough-radios-punch",
"tough-tomatoes-explain",
"tricky-avocados-play",
"tricky-ears-shout",
"tricky-laws-bathe",
"twelve-beans-drive",
@ -683,6 +685,7 @@
"wet-games-fly",
"wet-pears-remain",
"wet-wombats-repeat",
"wicked-bikes-matter",
"wicked-clouds-exercise",
"wicked-doors-train",
"wicked-emus-drive",

@ -1,5 +1,15 @@
# svelte
## 5.0.0-next.183
### Patch Changes
- fix: properly validate snippet/slot interop ([#12421](https://github.com/sveltejs/svelte/pull/12421))
- fix: cache call expressions in render tag arguments ([#12418](https://github.com/sveltejs/svelte/pull/12418))
- fix: optimize `bind:group` ([#12406](https://github.com/sveltejs/svelte/pull/12406))
## 5.0.0-next.182
### Patch Changes

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

Loading…
Cancel
Save