Version Packages (next) (#10304)

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

@ -71,6 +71,7 @@
"giant-roses-press", "giant-roses-press",
"good-cars-visit", "good-cars-visit",
"good-pianos-jump", "good-pianos-jump",
"great-fans-unite",
"great-icons-retire", "great-icons-retire",
"green-eggs-approve", "green-eggs-approve",
"green-hounds-play", "green-hounds-play",
@ -155,6 +156,7 @@
"serious-socks-cover", "serious-socks-cover",
"serious-zebras-scream", "serious-zebras-scream",
"seven-deers-jam", "seven-deers-jam",
"seven-hornets-smile",
"seven-jobs-sniff", "seven-jobs-sniff",
"seven-ravens-check", "seven-ravens-check",
"sharp-gorillas-impress", "sharp-gorillas-impress",
@ -226,6 +228,7 @@
"wild-foxes-wonder", "wild-foxes-wonder",
"wise-dancers-hang", "wise-dancers-hang",
"wise-donkeys-marry", "wise-donkeys-marry",
"wise-jobs-admire",
"witty-camels-warn", "witty-camels-warn",
"witty-steaks-dream" "witty-steaks-dream"
] ]

@ -1,5 +1,15 @@
# svelte # svelte
## 5.0.0-next.40
### Patch Changes
- chore: cleanup derived destruction ([#10303](https://github.com/sveltejs/svelte/pull/10303))
- fix: correctly parse at-rules containing special characters in strings ([#10221](https://github.com/sveltejs/svelte/pull/10221))
- fix: Add missing `miter-clip` and `arcs` values to `stroke-linejoin` attribute ([#10141](https://github.com/sveltejs/svelte/pull/10141))
## 5.0.0-next.39 ## 5.0.0-next.39
### 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.39", "version": "5.0.0-next.40",
"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.39'; export const VERSION = '5.0.0-next.40';
export const PUBLIC_VERSION = '5'; export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save