Version Packages (next) (#10792)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/10796/head svelte@5.0.0-next.78
github-actions[bot] 2 years ago committed by GitHub
parent 1e653ef4d8
commit 924f0611f7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -133,6 +133,7 @@
"itchy-lions-wash", "itchy-lions-wash",
"itchy-terms-guess", "itchy-terms-guess",
"khaki-cooks-develop", "khaki-cooks-develop",
"khaki-ligers-sing",
"khaki-mails-draw", "khaki-mails-draw",
"khaki-moose-arrive", "khaki-moose-arrive",
"kind-baboons-approve", "kind-baboons-approve",
@ -195,6 +196,7 @@
"olive-socks-kick", "olive-socks-kick",
"orange-crews-rescue", "orange-crews-rescue",
"orange-dingos-poke", "orange-dingos-poke",
"orange-yaks-protect",
"pink-bikes-agree", "pink-bikes-agree",
"pink-mayflies-tie", "pink-mayflies-tie",
"polite-dolphins-care", "polite-dolphins-care",

@ -1,5 +1,13 @@
# svelte # svelte
## 5.0.0-next.78
### Patch Changes
- fix: invalidate store when mutated inside each block ([#10785](https://github.com/sveltejs/svelte/pull/10785))
- fix: make `set.has(...)` granular for existing properties' ([#10793](https://github.com/sveltejs/svelte/pull/10793))
## 5.0.0-next.77 ## 5.0.0-next.77
### 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.77", "version": "5.0.0-next.78",
"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.77'; export const VERSION = '5.0.0-next.78';
export const PUBLIC_VERSION = '5'; export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save