Version Packages (next) (#11292)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/11296/head svelte@5.0.0-next.112
github-actions[bot] 4 months ago committed by GitHub
parent fe6e4e2b05
commit e3c8589737
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -262,6 +262,7 @@
"orange-yaks-protect", "orange-yaks-protect",
"pink-bikes-agree", "pink-bikes-agree",
"pink-mayflies-tie", "pink-mayflies-tie",
"plenty-starfishes-dress",
"polite-dolphins-care", "polite-dolphins-care",
"polite-pumpkins-guess", "polite-pumpkins-guess",
"polite-ravens-study", "polite-ravens-study",

@ -1,5 +1,11 @@
# svelte # svelte
## 5.0.0-next.112
### Patch Changes
- fix: avoid hoisting error by using 'let' instead of 'var' ([#11291](https://github.com/sveltejs/svelte/pull/11291))
## 5.0.0-next.111 ## 5.0.0-next.111
### 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.111", "version": "5.0.0-next.112",
"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.111'; export const VERSION = '5.0.0-next.112';
export const PUBLIC_VERSION = '5'; export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save