Version Packages (#17029)

* Version Packages

* minor not patch

* Apply suggestions from code review

---------

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Rich Harris <rich.harris@vercel.com>
pull/17034/head svelte@5.42.0
github-actions[bot] 4 weeks ago committed by GitHub
parent d8137b78a5
commit 875a04170e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: always allow `setContext` before first await in component

@ -1,5 +0,0 @@
---
"svelte": patch
---
feat: experimental `fork` API

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: less confusing names for inspect errors

@ -1,5 +1,17 @@
# svelte
## 5.42.0
### Minor Changes
- feat: experimental `fork` API ([#17004](https://github.com/sveltejs/svelte/pull/17004))
### Patch Changes
- fix: always allow `setContext` before first await in component ([#17031](https://github.com/sveltejs/svelte/pull/17031))
- fix: less confusing names for inspect errors ([#17026](https://github.com/sveltejs/svelte/pull/17026))
## 5.41.4
### Patch Changes

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

Loading…
Cancel
Save