Version Packages (#14924)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/14939/head svelte@5.16.6
github-actions[bot] 8 months ago committed by GitHub
parent 19038d19cb
commit 4aadb34c02
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: Make Tween duration 0 set current to target immediately

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: guard against `customElements` being unavailable in browser extension contexts

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: treat `inert` as a boolean attribute

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: remove leading newline from `<pre>` contents

@ -1,5 +1,17 @@
# svelte
## 5.16.6
### Patch Changes
- fix: Make Tween duration 0 set current to target immediately ([#14937](https://github.com/sveltejs/svelte/pull/14937))
- fix: guard against `customElements` being unavailable in browser extension contexts ([#14933](https://github.com/sveltejs/svelte/pull/14933))
- fix: treat `inert` as a boolean attribute ([#14935](https://github.com/sveltejs/svelte/pull/14935))
- fix: remove leading newline from `<pre>` contents ([#14922](https://github.com/sveltejs/svelte/pull/14922))
## 5.16.5
### Patch Changes

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

Loading…
Cancel
Save