Version Packages (next) (#13038)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/13042/head svelte@5.0.0-next.240
github-actions[bot] 3 months ago committed by GitHub
parent e73e63ed11
commit e860547cb6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -201,6 +201,7 @@
"fifty-steaks-float", "fifty-steaks-float",
"fifty-toys-invite", "fifty-toys-invite",
"five-maps-reflect", "five-maps-reflect",
"five-shirts-run",
"five-tigers-search", "five-tigers-search",
"flat-feet-visit", "flat-feet-visit",
"flat-ghosts-fly", "flat-ghosts-fly",
@ -634,6 +635,7 @@
"silver-points-approve", "silver-points-approve",
"silver-sheep-knock", "silver-sheep-knock",
"six-apes-peel", "six-apes-peel",
"six-beans-laugh",
"six-bears-trade", "six-bears-trade",
"six-boats-shave", "six-boats-shave",
"six-chicken-kneel", "six-chicken-kneel",
@ -649,6 +651,7 @@
"slimy-clouds-talk", "slimy-clouds-talk",
"slimy-hairs-impress", "slimy-hairs-impress",
"slimy-laws-explode", "slimy-laws-explode",
"slimy-news-help",
"slimy-onions-approve", "slimy-onions-approve",
"slimy-walls-draw", "slimy-walls-draw",
"slow-beds-shave", "slow-beds-shave",

@ -1,5 +1,15 @@
# svelte # svelte
## 5.0.0-next.240
### Patch Changes
- fix: use WAAPI to control timing of JS-based animations ([#13018](https://github.com/sveltejs/svelte/pull/13018))
- fix: prevent binding to imports ([#13035](https://github.com/sveltejs/svelte/pull/13035))
- fix: never abort bidirectional transitions ([#13018](https://github.com/sveltejs/svelte/pull/13018))
## 5.0.0-next.239 ## 5.0.0-next.239
### Patch Changes ### Patch Changes

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

@ -6,5 +6,5 @@
* https://svelte.dev/docs/svelte-compiler#svelte-version * https://svelte.dev/docs/svelte-compiler#svelte-version
* @type {string} * @type {string}
*/ */
export const VERSION = '5.0.0-next.239'; export const VERSION = '5.0.0-next.240';
export const PUBLIC_VERSION = '5'; export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save