Version Packages (#15358)

* Version Packages

* tweak

---------

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Co-authored-by: Rich Harris <rich.harris@vercel.com>
pull/15380/head svelte@5.20.3
github-actions[bot] 6 months ago committed by GitHub
parent d4360af751
commit 220c2418d1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -1,5 +0,0 @@
---
'svelte': patch
---
Allow `@const` inside `#key`

@ -1,5 +0,0 @@
---
'svelte': patch
---
chore: remove unnecessary `?? ''` on some expressions

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: correctly override class attributes with class directives

@ -1,5 +1,15 @@
# svelte
## 5.20.3
### Patch Changes
- fix: allow `@const` inside `#key` ([#15377](https://github.com/sveltejs/svelte/pull/15377))
- fix: remove unnecessary `?? ''` on some expressions ([#15287](https://github.com/sveltejs/svelte/pull/15287))
- fix: correctly override class attributes with class directives ([#15352](https://github.com/sveltejs/svelte/pull/15352))
## 5.20.2
### Patch Changes

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

Loading…
Cancel
Save