Version Packages (next) (#12958)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
gh-12084 svelte@5.0.0-next.233
github-actions[bot] 1 month ago committed by GitHub
parent 8c1d439a36
commit 39f2d5ef80
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -687,6 +687,7 @@
"spotty-rocks-destroy", "spotty-rocks-destroy",
"spotty-shrimps-hug", "spotty-shrimps-hug",
"spotty-spiders-compare", "spotty-spiders-compare",
"spotty-trees-provide",
"spotty-turkeys-sparkle", "spotty-turkeys-sparkle",
"stale-books-perform", "stale-books-perform",
"stale-comics-look", "stale-comics-look",
@ -859,6 +860,7 @@
"yellow-taxis-double", "yellow-taxis-double",
"yellow-trees-juggle", "yellow-trees-juggle",
"young-ads-roll", "young-ads-roll",
"young-masks-refuse" "young-masks-refuse",
"young-peaches-agree"
] ]
} }

@ -1,5 +1,13 @@
# svelte # svelte
## 5.0.0-next.233
### Patch Changes
- fix: more robust handling of var declarations ([#12949](https://github.com/sveltejs/svelte/pull/12949))
- fix: remove buggy `validate_dynamic_component` check ([#12960](https://github.com/sveltejs/svelte/pull/12960))
## 5.0.0-next.232 ## 5.0.0-next.232
### 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.232", "version": "5.0.0-next.233",
"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.232'; export const VERSION = '5.0.0-next.233';
export const PUBLIC_VERSION = '5'; export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save