Version Packages (next) (#11564)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/11575/head svelte@5.0.0-next.131
github-actions[bot] 9 months ago committed by GitHub
parent 9c680f1030
commit 61238d0fd3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -29,6 +29,7 @@
"blue-lemons-wait", "blue-lemons-wait",
"blue-rules-juggle", "blue-rules-juggle",
"blue-timers-film", "blue-timers-film",
"blue-waves-sneeze",
"brave-carrots-draw", "brave-carrots-draw",
"brave-gorillas-end", "brave-gorillas-end",
"brave-points-sleep", "brave-points-sleep",
@ -82,6 +83,7 @@
"cyan-squids-drive", "cyan-squids-drive",
"dirty-bats-punch", "dirty-bats-punch",
"dirty-donuts-yell", "dirty-donuts-yell",
"dirty-eyes-itch",
"dirty-garlics-design", "dirty-garlics-design",
"dirty-tips-add", "dirty-tips-add",
"dry-clocks-grow", "dry-clocks-grow",

@ -1,5 +1,13 @@
# svelte # svelte
## 5.0.0-next.131
### Patch Changes
- chore: optimise effects ([#11569](https://github.com/sveltejs/svelte/pull/11569))
- fix: ensure all effect cleanup functions are untracked ([#11567](https://github.com/sveltejs/svelte/pull/11567))
## 5.0.0-next.130 ## 5.0.0-next.130
### 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.130", "version": "5.0.0-next.131",
"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.130'; export const VERSION = '5.0.0-next.131';
export const PUBLIC_VERSION = '5'; export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save