pull/16690/merge
github-actions[bot] 4 days ago committed by GitHub
commit 0695f8bf54
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: replace `undefined` with `void(0)` in CallExpressions

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: place store setup inside async body

@ -1,5 +1,13 @@
# svelte
## 5.38.7
### Patch Changes
- fix: replace `undefined` with `void(0)` in CallExpressions ([#16693](https://github.com/sveltejs/svelte/pull/16693))
- fix: place store setup inside async body ([#16687](https://github.com/sveltejs/svelte/pull/16687))
## 5.38.6
### Patch Changes

@ -2,7 +2,7 @@
"name": "svelte",
"description": "Cybernetically enhanced web apps",
"license": "MIT",
"version": "5.38.6",
"version": "5.38.7",
"type": "module",
"types": "./types/index.d.ts",
"engines": {

@ -4,5 +4,5 @@
* The current version, as set in package.json.
* @type {string}
*/
export const VERSION = '5.38.6';
export const VERSION = '5.38.7';
export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save