Skip to content

Commit 50c270a

Browse files
Version Packages (#9096)
--------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: Simon H <[email protected]>
1 parent 05f99d2 commit 50c270a

File tree

5 files changed

+9
-8
lines changed

5 files changed

+9
-8
lines changed

.changeset/slimy-dingos-call.md

-5
This file was deleted.

documentation/docs/05-misc/03-typescript.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ Then make sure that `d.ts` file is referenced in your `tsconfig.json`. If it rea
142142

143143
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:
144144

145-
```js
145+
```ts
146146
/// file: additional-svelte-typings.d.ts
147147
import { HTMLButtonAttributes } from 'svelte/elements'
148148

packages/svelte/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# svelte
22

3+
## 4.2.0
4+
5+
### Minor Changes
6+
7+
- feat: move `svelteHTML` from language-tools into core to load the correct `svelte/element` types ([#9070](https://github.com/sveltejs/svelte/pull/9070))
8+
39
## 4.1.2
410

511
### Patch Changes

packages/svelte/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "svelte",
3-
"version": "4.1.2",
3+
"version": "4.2.0",
44
"description": "Cybernetically enhanced web apps",
55
"type": "module",
66
"module": "src/runtime/index.js",

packages/svelte/src/shared/version.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@
66
* https://svelte.dev/docs/svelte-compiler#svelte-version
77
* @type {string}
88
*/
9-
export const VERSION = '4.1.2';
9+
export const VERSION = '4.2.0';
1010
export const PUBLIC_VERSION = '4';

0 commit comments

Comments
 (0)