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

@ -1,5 +1,15 @@
# svelte # 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 ## 5.0.0-next.69
### 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.69", "version": "5.0.0-next.70",
"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.69'; export const VERSION = '5.0.0-next.70';
export const PUBLIC_VERSION = '5'; export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save