Version Packages (next) (#10357)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/10368/head svelte@5.0.0-next.44
github-actions[bot] 6 months ago committed by GitHub
parent e75c9acd18
commit 283366b13a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -173,6 +173,7 @@
"shiny-baboons-play",
"shiny-shrimps-march",
"short-buses-camp",
"sixty-items-crash",
"slimy-clouds-talk",
"slimy-laws-explode",
"slimy-walls-draw",
@ -225,6 +226,7 @@
"three-camels-sell",
"three-suits-grin",
"tidy-buses-whisper",
"tidy-starfishes-allow",
"tiny-kings-whisper",
"twelve-dragons-join",
"twelve-onions-juggle",

@ -1,5 +1,13 @@
# svelte
## 5.0.0-next.44
### Patch Changes
- fix: bindings with typescript assertions ([#10329](https://github.com/sveltejs/svelte/pull/10329))
- fix: only reuse state proxies that belong to the current value ([#10343](https://github.com/sveltejs/svelte/pull/10343))
## 5.0.0-next.43
### Patch Changes

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

Loading…
Cancel
Save