Version Packages (next) (#10814)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/10822/head svelte@5.0.0-next.80
github-actions[bot] 1 year ago committed by GitHub
parent d921fb97bd
commit 1bfafe935b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -235,6 +235,7 @@
"selfish-dragons-knock", "selfish-dragons-knock",
"selfish-tools-hide", "selfish-tools-hide",
"serious-kids-deliver", "serious-kids-deliver",
"serious-needles-joke",
"serious-socks-cover", "serious-socks-cover",
"serious-zebras-scream", "serious-zebras-scream",
"seven-deers-jam", "seven-deers-jam",
@ -345,6 +346,7 @@
"wild-foxes-wonder", "wild-foxes-wonder",
"wise-apples-care", "wise-apples-care",
"wise-dancers-hang", "wise-dancers-hang",
"wise-dodos-tell",
"wise-donkeys-marry", "wise-donkeys-marry",
"wise-jobs-admire", "wise-jobs-admire",
"wise-radios-exercise", "wise-radios-exercise",

@ -1,5 +1,13 @@
# svelte # svelte
## 5.0.0-next.80
### Patch Changes
- fix: add types for svelte/reactivity ([#10817](https://github.com/sveltejs/svelte/pull/10817))
- fix: ensure arguments are supported on all reactive Date methods ([#10813](https://github.com/sveltejs/svelte/pull/10813))
## 5.0.0-next.79 ## 5.0.0-next.79
### 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.79", "version": "5.0.0-next.80",
"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.79'; export const VERSION = '5.0.0-next.80';
export const PUBLIC_VERSION = '5'; export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save