Version Packages (next) (#12132)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/12135/head svelte@5.0.0-next.164
github-actions[bot] 1 year ago committed by GitHub
parent 5b60a0e6ba
commit ce7abe4471
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -543,6 +543,7 @@
"swift-feet-juggle", "swift-feet-juggle",
"swift-knives-tie", "swift-knives-tie",
"swift-poets-carry", "swift-poets-carry",
"swift-rats-sing",
"swift-ravens-hunt", "swift-ravens-hunt",
"swift-seahorses-deliver", "swift-seahorses-deliver",
"tall-books-grin", "tall-books-grin",
@ -559,6 +560,7 @@
"tasty-steaks-smile", "tasty-steaks-smile",
"ten-eels-move", "ten-eels-move",
"ten-foxes-repeat", "ten-foxes-repeat",
"ten-geese-share",
"ten-jokes-divide", "ten-jokes-divide",
"ten-peaches-sleep", "ten-peaches-sleep",
"ten-singers-cough", "ten-singers-cough",

@ -1,5 +1,13 @@
# svelte # svelte
## 5.0.0-next.164
### Patch Changes
- fix: prevent `a11y_label_has_associated_control` false positive for component or render tag in `<label>` ([#12119](https://github.com/sveltejs/svelte/pull/12119))
- fix: allow multiple optional parameters with defaults in snippets ([#12070](https://github.com/sveltejs/svelte/pull/12070))
## 5.0.0-next.163 ## 5.0.0-next.163
### 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.163", "version": "5.0.0-next.164",
"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.163'; export const VERSION = '5.0.0-next.164';
export const PUBLIC_VERSION = '5'; export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save