Version Packages (next) (#13031)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/13038/head svelte@5.0.0-next.239
github-actions[bot] 5 months ago committed by GitHub
parent 2b7e109f61
commit 8f3f07a70b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -342,6 +342,7 @@
"itchy-terms-guess", "itchy-terms-guess",
"khaki-cheetahs-refuse", "khaki-cheetahs-refuse",
"khaki-cooks-develop", "khaki-cooks-develop",
"khaki-donkeys-jump",
"khaki-ligers-sing", "khaki-ligers-sing",
"khaki-mails-draw", "khaki-mails-draw",
"khaki-mails-scream", "khaki-mails-scream",
@ -810,6 +811,7 @@
"twenty-gifts-develop", "twenty-gifts-develop",
"two-brooms-fail", "two-brooms-fail",
"two-candles-move", "two-candles-move",
"two-cats-approve",
"two-dogs-accept", "two-dogs-accept",
"two-dragons-yell", "two-dragons-yell",
"two-falcons-buy", "two-falcons-buy",

@ -1,5 +1,13 @@
# svelte # svelte
## 5.0.0-next.239
### Patch Changes
- fix: properly handle proxied array length mutations ([#13026](https://github.com/sveltejs/svelte/pull/13026))
- fix: repair `href` attribute mismatches ([#13032](https://github.com/sveltejs/svelte/pull/13032))
## 5.0.0-next.238 ## 5.0.0-next.238
### 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.238", "version": "5.0.0-next.239",
"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.238'; export const VERSION = '5.0.0-next.239';
export const PUBLIC_VERSION = '5'; export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save