Version Packages (next) (#11154)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/11155/head svelte@5.0.0-next.102
github-actions[bot] 11 months ago committed by GitHub
parent 02f8dafeaa
commit be842425f5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -319,6 +319,7 @@
"small-sheep-type", "small-sheep-type",
"small-spiders-fail", "small-spiders-fail",
"smart-cherries-leave", "smart-cherries-leave",
"smart-grapes-mate",
"smart-parents-swim", "smart-parents-swim",
"smart-turkeys-tell", "smart-turkeys-tell",
"smart-zebras-pay", "smart-zebras-pay",

@ -1,5 +1,11 @@
# svelte # svelte
## 5.0.0-next.102
### Patch Changes
- fix: generate correct types for reactive Map/Set/Date ([#11153](https://github.com/sveltejs/svelte/pull/11153))
## 5.0.0-next.101 ## 5.0.0-next.101
### 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.101", "version": "5.0.0-next.102",
"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.101'; export const VERSION = '5.0.0-next.102';
export const PUBLIC_VERSION = '5'; export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save