Version Packages (next) (#11035)

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

@ -172,6 +172,7 @@
"little-pans-jog",
"long-buckets-lay",
"long-crews-return",
"long-humans-repair",
"long-lobsters-mate",
"loud-cheetahs-flow",
"loud-mugs-smile",
@ -200,6 +201,7 @@
"neat-files-rescue",
"nervous-spoons-relax",
"new-boats-wait",
"new-brooms-grin",
"new-rabbits-flow",
"nice-avocados-move",
"ninety-dingos-walk",

@ -1,5 +1,13 @@
# svelte
## 5.0.0-next.93
### Patch Changes
- breaking: prevent unparenthesized sequence expressions in attributes ([#11032](https://github.com/sveltejs/svelte/pull/11032))
- fix: ensure transition errors are not swallowed ([#11039](https://github.com/sveltejs/svelte/pull/11039))
## 5.0.0-next.92
### Patch Changes

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

Loading…
Cancel
Save