Version Packages (next) (#12907)

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

@ -57,6 +57,7 @@
"brown-insects-float", "brown-insects-float",
"brown-months-flow", "brown-months-flow",
"brown-months-fry", "brown-months-fry",
"brown-radios-itch",
"brown-spoons-boil", "brown-spoons-boil",
"brown-turkeys-tap", "brown-turkeys-tap",
"calm-buses-clap", "calm-buses-clap",
@ -483,6 +484,7 @@
"perfect-actors-bake", "perfect-actors-bake",
"perfect-hairs-matter", "perfect-hairs-matter",
"perfect-hats-dance", "perfect-hats-dance",
"perfect-pugs-shake",
"pink-bikes-agree", "pink-bikes-agree",
"pink-countries-repair", "pink-countries-repair",
"pink-goats-promise", "pink-goats-promise",

@ -1,5 +1,13 @@
# svelte # svelte
## 5.0.0-next.226
### Patch Changes
- fix: ensure typings for `<svelte:options>` are picked up ([#12903](https://github.com/sveltejs/svelte/pull/12903))
- fix: exclude local declarations from non-reactive property warnings ([#12909](https://github.com/sveltejs/svelte/pull/12909))
## 5.0.0-next.225 ## 5.0.0-next.225
### 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.225", "version": "5.0.0-next.226",
"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.225'; export const VERSION = '5.0.0-next.226';
export const PUBLIC_VERSION = '5'; export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save