Version Packages (next) (#12579)

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

@ -199,6 +199,7 @@
"four-flies-hammer", "four-flies-hammer",
"four-mice-hammer", "four-mice-hammer",
"four-papayas-turn", "four-papayas-turn",
"four-peas-tickle",
"four-pugs-listen", "four-pugs-listen",
"fresh-beds-wash", "fresh-beds-wash",
"fresh-dots-destroy", "fresh-dots-destroy",
@ -541,6 +542,7 @@
"silent-apes-report", "silent-apes-report",
"silent-hats-stare", "silent-hats-stare",
"silent-rabbits-join", "silent-rabbits-join",
"silent-rocks-yell",
"silly-ducks-mix", "silly-ducks-mix",
"silly-laws-happen", "silly-laws-happen",
"silly-lies-film", "silly-lies-film",

@ -1,5 +1,13 @@
# svelte # svelte
## 5.0.0-next.198
### Patch Changes
- chore: remove internal `binding.expression` mechanism ([#12530](https://github.com/sveltejs/svelte/pull/12530))
- fix: exclude `bind:this` from reactive state validation ([#12566](https://github.com/sveltejs/svelte/pull/12566))
## 5.0.0-next.197 ## 5.0.0-next.197
### 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.197", "version": "5.0.0-next.198",
"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.197'; export const VERSION = '5.0.0-next.198';
export const PUBLIC_VERSION = '5'; export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save