diff --git a/.changeset/pre.json b/.changeset/pre.json index 26b9cb36..238d68fc 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -9,6 +9,8 @@ "blue-pets-play", "brown-cheetahs-greet", "friendly-hats-flow", - "grumpy-pans-guess" + "grumpy-pans-guess", + "honest-mangos-wave", + "yellow-cooks-end" ] } diff --git a/CHANGELOG.md b/CHANGELOG.md index 96538d37..90e71977 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # svelte-eslint-parser +## 0.34.0-next.3 + +### Minor Changes + +- [#435](https://github.com/sveltejs/svelte-eslint-parser/pull/435) [`7508680`](https://github.com/sveltejs/svelte-eslint-parser/commit/7508680b3a88c951fa3fe0bdd9b59b21d6034b27) Thanks [@ota-meshi](https://github.com/ota-meshi)! - feat: improve props type + +### Patch Changes + +- [#434](https://github.com/sveltejs/svelte-eslint-parser/pull/434) [`0ef067b`](https://github.com/sveltejs/svelte-eslint-parser/commit/0ef067b57ab8897cff03f8793c2767e6d0b83274) Thanks [@ota-meshi](https://github.com/ota-meshi)! - fix: incorrect location when there is whitespace at the beginning of block + ## 0.34.0-next.2 ### Minor Changes diff --git a/package.json b/package.json index 7631364a..f7969a9b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "svelte-eslint-parser", - "version": "0.34.0-next.2", + "version": "0.34.0-next.3", "description": "Svelte parser for ESLint", "repository": "git+https://github.com/sveltejs/svelte-eslint-parser.git", "homepage": "https://github.com/sveltejs/svelte-eslint-parser#readme", diff --git a/src/meta.ts b/src/meta.ts index 43e0228f..94754427 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 = "0.34.0-next.2" as const; +export const version = "0.34.0-next.3" as const;