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

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

Loading…
Cancel
Save