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] 4 weeks 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-shrimps-hug",
"spotty-spiders-compare",
"spotty-trees-provide",
"spotty-turkeys-sparkle",
"stale-books-perform",
"stale-comics-look",
@ -859,6 +860,7 @@
"yellow-taxis-double",
"yellow-trees-juggle",
"young-ads-roll",
"young-masks-refuse"
"young-masks-refuse",
"young-peaches-agree"
]
}

@ -1,5 +1,13 @@
# 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
### Patch Changes

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

Loading…
Cancel
Save