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

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

Loading…
Cancel
Save