Version Packages (#9096)

---------

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Co-authored-by: Simon H <5968653+dummdidumm@users.noreply.github.com>
pull/9100/head svelte@4.2.0
github-actions[bot] 1 year ago committed by GitHub
parent 05f99d20f9
commit 50c270a54d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1,5 +0,0 @@
---
'svelte': minor
---
feat: move `svelteHTML` from language-tools into core to load the correct `svelte/element` types

@ -142,7 +142,7 @@ Then make sure that `d.ts` file is referenced in your `tsconfig.json`. If it rea
Since Svelte version 4.2 / `svelte-check` version 3.5 / VS Code extension version 107.10.0 you can also declare the typings by augmenting the the `svelte/elements` module like this: Since Svelte version 4.2 / `svelte-check` version 3.5 / VS Code extension version 107.10.0 you can also declare the typings by augmenting the the `svelte/elements` module like this:
```js ```ts
/// file: additional-svelte-typings.d.ts /// file: additional-svelte-typings.d.ts
import { HTMLButtonAttributes } from 'svelte/elements' import { HTMLButtonAttributes } from 'svelte/elements'

@ -1,5 +1,11 @@
# svelte # svelte
## 4.2.0
### Minor Changes
- feat: move `svelteHTML` from language-tools into core to load the correct `svelte/element` types ([#9070](https://github.com/sveltejs/svelte/pull/9070))
## 4.1.2 ## 4.1.2
### Patch Changes ### Patch Changes

@ -1,6 +1,6 @@
{ {
"name": "svelte", "name": "svelte",
"version": "4.1.2", "version": "4.2.0",
"description": "Cybernetically enhanced web apps", "description": "Cybernetically enhanced web apps",
"type": "module", "type": "module",
"module": "src/runtime/index.js", "module": "src/runtime/index.js",

@ -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 = '4.1.2'; export const VERSION = '4.2.0';
export const PUBLIC_VERSION = '4'; export const PUBLIC_VERSION = '4';

Loading…
Cancel
Save