Version Packages (#15010)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/15020/head svelte@5.18.0
github-actions[bot] 8 months ago committed by GitHub
parent ff79704ab8
commit 1d3c4397b2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -1,5 +0,0 @@
---
'svelte': minor
---
feat: allow `<template>` elements to contain any child

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: ensure resume effects are scheduled in topological order

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: bump esrap

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: remove listener on `bind_current_time` teardown

@ -1,5 +1,19 @@
# svelte
## 5.18.0
### Minor Changes
- feat: allow `<template>` elements to contain any child ([#15007](https://github.com/sveltejs/svelte/pull/15007))
### Patch Changes
- fix: ensure resume effects are scheduled in topological order ([#15012](https://github.com/sveltejs/svelte/pull/15012))
- fix: bump esrap ([#15015](https://github.com/sveltejs/svelte/pull/15015))
- fix: remove listener on `bind_current_time` teardown ([#15013](https://github.com/sveltejs/svelte/pull/15013))
## 5.17.5
### Patch Changes

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

Loading…
Cancel
Save