Version Packages (next) (#13627)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/13630/head svelte@5.0.0-next.268
github-actions[bot] 3 weeks ago committed by GitHub
parent 53ae2b8170
commit f579a3ba7d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -179,6 +179,7 @@
"eighty-days-cheat", "eighty-days-cheat",
"eighty-days-wave", "eighty-days-wave",
"eighty-dragons-search", "eighty-dragons-search",
"eighty-dryers-pretend",
"eighty-hornets-breathe", "eighty-hornets-breathe",
"eighty-lizards-notice", "eighty-lizards-notice",
"eighty-mails-develop", "eighty-mails-develop",
@ -601,6 +602,7 @@
"poor-hats-design", "poor-hats-design",
"poor-mugs-pay", "poor-mugs-pay",
"poor-seahorses-flash", "poor-seahorses-flash",
"poor-shrimps-explain",
"popular-apes-bathe", "popular-apes-bathe",
"popular-cameras-tie", "popular-cameras-tie",
"popular-cups-bathe", "popular-cups-bathe",
@ -695,6 +697,7 @@
"sharp-spies-live", "sharp-spies-live",
"sharp-tomatoes-learn", "sharp-tomatoes-learn",
"shiny-baboons-play", "shiny-baboons-play",
"shiny-jobs-judge",
"shiny-kangaroos-move", "shiny-kangaroos-move",
"shiny-mayflies-clean", "shiny-mayflies-clean",
"shiny-melons-love", "shiny-melons-love",

@ -1,5 +1,15 @@
# svelte # svelte
## 5.0.0-next.268
### Patch Changes
- breaking: disallow state mutations in logic block expression ([#13625](https://github.com/sveltejs/svelte/pull/13625))
- breaking: stronger enumerated types ([#13624](https://github.com/sveltejs/svelte/pull/13624))
- chore: improve runtime performance of derived signals ([#13626](https://github.com/sveltejs/svelte/pull/13626))
## 5.0.0-next.267 ## 5.0.0-next.267
### 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.267", "version": "5.0.0-next.268",
"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.267'; export const VERSION = '5.0.0-next.268';
export const PUBLIC_VERSION = '5'; export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save