Version Packages (next) (#10670)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/10691/head svelte@5.0.0-next.70
github-actions[bot] 10 months ago committed by GitHub
parent f94eedc0ee
commit c4473dff7c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -47,6 +47,7 @@
"cool-roses-trade",
"cuddly-pianos-drop",
"curly-lizards-dream",
"curvy-buses-laugh",
"curvy-cups-cough",
"curvy-ties-shout",
"cyan-flowers-destroy",
@ -191,6 +192,7 @@
"polite-ravens-study",
"poor-eggs-enjoy",
"poor-seahorses-flash",
"popular-ligers-perform",
"popular-mangos-rest",
"pretty-ties-help",
"purple-dragons-peel",
@ -311,6 +313,7 @@
"two-dragons-yell",
"two-falcons-buy",
"unlucky-boxes-obey",
"unlucky-steaks-warn",
"unlucky-trees-lick",
"violet-pigs-jam",
"weak-terms-destroy",

@ -1,5 +1,15 @@
# svelte
## 5.0.0-next.70
### Patch Changes
- fix: better ownership mutation validation ([#10673](https://github.com/sveltejs/svelte/pull/10673))
- fix: handle TypeScript's optional parameter syntax in snippets ([#10671](https://github.com/sveltejs/svelte/pull/10671))
- fix: deduplicate generated props and action arg names ([#10669](https://github.com/sveltejs/svelte/pull/10669))
## 5.0.0-next.69
### Patch Changes

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

Loading…
Cancel
Save