Version Packages (next) (#12125)

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

@ -141,6 +141,7 @@
"fair-crabs-check", "fair-crabs-check",
"fair-pianos-talk", "fair-pianos-talk",
"fair-spies-repeat", "fair-spies-repeat",
"famous-chairs-notice",
"famous-falcons-melt", "famous-falcons-melt",
"famous-kiwis-thank", "famous-kiwis-thank",
"famous-knives-sneeze", "famous-knives-sneeze",
@ -340,6 +341,7 @@
"neat-files-rescue", "neat-files-rescue",
"neat-jokes-beam", "neat-jokes-beam",
"nervous-berries-boil", "nervous-berries-boil",
"nervous-ducks-repeat",
"nervous-spoons-relax", "nervous-spoons-relax",
"nervous-turkeys-end", "nervous-turkeys-end",
"new-boats-wait", "new-boats-wait",

@ -1,5 +1,13 @@
# svelte # svelte
## 5.0.0-next.163
### Patch Changes
- feat: more accurate `render`/`mount`/`hydrate` options ([#12111](https://github.com/sveltejs/svelte/pull/12111))
- fix: better binding interop between runes/non-runes components ([#12123](https://github.com/sveltejs/svelte/pull/12123))
## 5.0.0-next.162 ## 5.0.0-next.162
### 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.162", "version": "5.0.0-next.163",
"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.162'; export const VERSION = '5.0.0-next.163';
export const PUBLIC_VERSION = '5'; export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save