Version Packages (next) (#10770)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/10789/head svelte@5.0.0-next.76
github-actions[bot] 4 months ago committed by GitHub
parent 9223032a2a
commit 0c1026f166
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -31,6 +31,7 @@
"bright-snakes-sing",
"brown-months-fry",
"brown-spoons-boil",
"calm-ravens-sneeze",
"chatty-beans-divide",
"chatty-cups-drop",
"chatty-sloths-allow",
@ -74,6 +75,7 @@
"empty-tools-share",
"fair-crabs-check",
"fair-pianos-talk",
"fair-spies-repeat",
"famous-falcons-melt",
"famous-knives-sneeze",
"famous-pants-pay",
@ -260,6 +262,7 @@
"small-sheep-type",
"smart-parents-swim",
"smart-zebras-pay",
"smooth-rings-rush",
"soft-clocks-remember",
"soft-geese-learn",
"soft-months-grab",

@ -1,5 +1,15 @@
# svelte
## 5.0.0-next.76
### Patch Changes
- feat: add reactive Set class to svelte/reactivity ([#10781](https://github.com/sveltejs/svelte/pull/10781))
- breaking: make `$props()` rune non-generic ([#10694](https://github.com/sveltejs/svelte/pull/10694))
- fix: improve internal render effect sequencing ([#10769](https://github.com/sveltejs/svelte/pull/10769))
## 5.0.0-next.75
### Patch Changes

@ -2,7 +2,7 @@
"name": "svelte",
"description": "Cybernetically enhanced web apps",
"license": "MIT",
"version": "5.0.0-next.75",
"version": "5.0.0-next.76",
"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.75';
export const VERSION = '5.0.0-next.76';
export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save