Version Packages (next) (#13336)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/13341/head svelte@5.0.0-next.256
github-actions[bot] 2 months ago committed by GitHub
parent b3f3915180
commit 78b134dec1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -518,6 +518,8 @@
"old-mails-sneeze",
"old-oranges-compete",
"old-planets-bow",
"old-planets-kiss",
"old-spoons-pull",
"olive-apples-lick",
"olive-cobras-wonder",
"olive-forks-grin",
@ -537,6 +539,7 @@
"orange-yaks-protect",
"orange-zoos-heal",
"perfect-actors-bake",
"perfect-ants-allow",
"perfect-cooks-shop",
"perfect-hairs-matter",
"perfect-hats-dance",

@ -1,5 +1,15 @@
# svelte
## 5.0.0-next.256
### Patch Changes
- fix: only warn on context="module" in runes mode ([#13332](https://github.com/sveltejs/svelte/pull/13332))
- feat: deprecate `<svelte:self>` in runes mode ([#13333](https://github.com/sveltejs/svelte/pull/13333))
- fix: set strings as attributes, non-strings as properties if property exists ([#13327](https://github.com/sveltejs/svelte/pull/13327))
## 5.0.0-next.255
### Patch Changes

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

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

Loading…
Cancel
Save