diff --git a/.changeset/blue-cameras-roll.md b/.changeset/blue-cameras-roll.md deleted file mode 100644 index 6a5510a..0000000 --- a/.changeset/blue-cameras-roll.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"toml-eslint-parser": patch ---- - -fix: wrong value of `bigint` in binary `TOMLIntegerValue` diff --git a/.changeset/ten-paws-decide.md b/.changeset/ten-paws-decide.md deleted file mode 100644 index 1399f79..0000000 --- a/.changeset/ten-paws-decide.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"toml-eslint-parser": minor ---- - -refactor for getStaticTOMLValue diff --git a/CHANGELOG.md b/CHANGELOG.md index 9d6dcfe..aeb2b3b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # toml-eslint-parser +## 0.9.0 + +### Minor Changes + +- [#169](https://github.com/ota-meshi/toml-eslint-parser/pull/169) [`89c7596`](https://github.com/ota-meshi/toml-eslint-parser/commit/89c7596e918b421c3ed55147d523d5308e81024d) Thanks [@ota-meshi](https://github.com/ota-meshi)! - refactor for getStaticTOMLValue + +### Patch Changes + +- [#169](https://github.com/ota-meshi/toml-eslint-parser/pull/169) [`89c7596`](https://github.com/ota-meshi/toml-eslint-parser/commit/89c7596e918b421c3ed55147d523d5308e81024d) Thanks [@ota-meshi](https://github.com/ota-meshi)! - fix: wrong value of `bigint` in binary `TOMLIntegerValue` + ## 0.8.1 ### Patch Changes diff --git a/package.json b/package.json index ce9b6d3..189f58e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "toml-eslint-parser", - "version": "0.8.1", + "version": "0.9.0", "description": "A TOML parser that produces output compatible with ESLint", "main": "lib/index.js", "files": [ diff --git a/src/meta.ts b/src/meta.ts index 4ff7c6c..4901456 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 "npm run build:meta" export const name = "toml-eslint-parser" as const; -export const version = "0.8.1" as const; +export const version = "0.9.0" as const;