diff --git a/.changeset/light-carrots-pump.md b/.changeset/light-carrots-pump.md deleted file mode 100644 index 2715a12e..00000000 --- a/.changeset/light-carrots-pump.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"svelte-eslint-parser": patch ---- - -fix: `$derived` argument expression to apply correct type information to `this` diff --git a/CHANGELOG.md b/CHANGELOG.md index ce969872..21cad427 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # svelte-eslint-parser +## 1.3.1 + +### Patch Changes + +- [#732](https://github.com/sveltejs/svelte-eslint-parser/pull/732) [`1350734`](https://github.com/sveltejs/svelte-eslint-parser/commit/1350734793ad8cf86b660aa8e3337be3c48fb5d4) Thanks [@ota-meshi](https://github.com/ota-meshi)! - fix: `$derived` argument expression to apply correct type information to `this` + ## 1.3.0 ### Minor Changes diff --git a/package.json b/package.json index d2031d86..89ed88fb 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "svelte-eslint-parser", - "version": "1.3.0", + "version": "1.3.1", "type": "module", "description": "Svelte parser for ESLint", "repository": "git+https://github.com/sveltejs/svelte-eslint-parser.git", diff --git a/src/meta.ts b/src/meta.ts index 3a3f5c18..023b70e8 100644 --- a/src/meta.ts +++ b/src/meta.ts @@ -2,4 +2,4 @@ // This file has been automatically generated, // in order to update its content execute "pnpm run build:meta" export const name = "svelte-eslint-parser" as const; -export const version = "1.3.0" as const; +export const version = "1.3.1" as const;