Skip to content

Commit 8f1a09f

Browse files
chore: release 0.8.0 🚀 (#62)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent c57882e commit 8f1a09f

File tree

5 files changed

+17
-4
lines changed

5 files changed

+17
-4
lines changed

‎.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.7.0"
2+
".": "0.8.0"
33
}

‎CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# Changelog
22

3+
## [0.8.0](https://github.com/eslint/json/compare/json-v0.7.0...json-v0.8.0) (2024-11-23)
4+
5+
6+
### Features
7+
8+
* rule no-unnormalized-keys ([#63](https://github.com/eslint/json/issues/63)) ([c57882e](https://github.com/eslint/json/commit/c57882e1c3b51f00b94da4ed9b40d5cf2e4d6847))
9+
10+
11+
### Bug Fixes
12+
13+
* add type tests ([#65](https://github.com/eslint/json/issues/65)) ([a6c0bc9](https://github.com/eslint/json/commit/a6c0bc9db1e265484c275860fdb41fcfd8aefaf2))
14+
* expose `plugin.configs` in types ([#59](https://github.com/eslint/json/issues/59)) ([1fd0452](https://github.com/eslint/json/commit/1fd0452e97554ec4e696d2105f68df36fbe7f260))
15+
316
## [0.7.0](https://github.com/eslint/json/compare/json-v0.6.0...json-v0.7.0) (2024-11-17)
417

518

‎jsr.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@eslint/json",
3-
"version": "0.7.0",
3+
"version": "0.8.0",
44
"exports": "./dist/esm/index.js",
55
"publish": {
66
"include": [

‎package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@eslint/json",
3-
"version": "0.7.0",
3+
"version": "0.8.0",
44
"description": "JSON linting plugin for ESLint",
55
"author": "Nicholas C. Zakas",
66
"type": "module",

‎src/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import noUnnormalizedKeys from "./rules/no-unnormalized-keys.js";
2121
const plugin = {
2222
meta: {
2323
name: "@eslint/json",
24-
version: "0.7.0", // x-release-please-version
24+
version: "0.8.0", // x-release-please-version
2525
},
2626
languages: {
2727
json: new JSONLanguage({ mode: "json" }),

0 commit comments

Comments
 (0)