Skip to content

Commit a52a694

Browse files
authored
chore: release main (#728)
1 parent 883d4cc commit a52a694

File tree

9 files changed

+43
-11
lines changed

9 files changed

+43
-11
lines changed

.release-please-manifest.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"packages/espree": "11.1.0",
3-
"packages/eslint-scope": "9.1.0",
4-
"packages/eslint-visitor-keys": "5.0.0"
2+
"packages/espree": "11.1.1",
3+
"packages/eslint-scope": "9.1.1",
4+
"packages/eslint-visitor-keys": "5.0.1"
55
}

packages/eslint-scope/CHANGELOG.md

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

3+
## [9.1.1](https://github.com/eslint/js/compare/eslint-scope-v9.1.0...eslint-scope-v9.1.1) (2026-02-20)
4+
5+
6+
### Dependencies
7+
8+
* The following workspace dependencies were updated
9+
* devDependencies
10+
* eslint-visitor-keys bumped from ^5.0.0 to ^5.0.1
11+
* espree bumped from ^11.1.0 to ^11.1.1
12+
313
## [9.1.0](https://github.com/eslint/js/compare/eslint-scope-v9.0.0...eslint-scope-v9.1.0) (2026-01-18)
414

515

packages/eslint-scope/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ function analyze(tree, providedOptions) {
146146
}
147147

148148
/** @name module:escope.version */
149-
export const version = "9.1.0"; // x-release-please-version
149+
export const version = "9.1.1"; // x-release-please-version
150150

151151
export {
152152
/** @name module:escope.Reference */

packages/eslint-scope/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
},
1919
"./package.json": "./package.json"
2020
},
21-
"version": "9.1.0",
21+
"version": "9.1.1",
2222
"engines": {
2323
"node": "^20.19.0 || ^22.13.0 || >=24"
2424
},
@@ -58,8 +58,8 @@
5858
"@typescript-eslint/parser": "^8.7.0",
5959
"chai": "^6.0.0",
6060
"eslint": ">=10.0.0-rc.0 <10.0.0 || ^10.0.0",
61-
"eslint-visitor-keys": "^5.0.0",
62-
"espree": "^11.1.0",
61+
"eslint-visitor-keys": "^5.0.1",
62+
"espree": "^11.1.1",
6363
"npm-license": "^0.3.3",
6464
"shelljs": "^0.8.5"
6565
}

packages/eslint-visitor-keys/CHANGELOG.md

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

3+
## [5.0.1](https://github.com/eslint/js/compare/eslint-visitor-keys-v5.0.0...eslint-visitor-keys-v5.0.1) (2026-02-20)
4+
5+
6+
### Bug Fixes
7+
8+
* improve tree-shaking ([#725](https://github.com/eslint/js/issues/725)) ([b699f32](https://github.com/eslint/js/commit/b699f3200cad596c731d077b22c239ce55fc7a06))
9+
310
## [5.0.0](https://github.com/eslint/js/compare/eslint-visitor-keys-v4.2.1...eslint-visitor-keys-v5.0.0) (2025-11-07)
411

512

packages/eslint-visitor-keys/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "eslint-visitor-keys",
3-
"version": "5.0.0",
3+
"version": "5.0.1",
44
"description": "Constants and utilities about visitor keys to traverse AST.",
55
"type": "module",
66
"main": "dist/eslint-visitor-keys.cjs",

packages/espree/CHANGELOG.md

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

3+
## [11.1.1](https://github.com/eslint/js/compare/espree-v11.1.0...espree-v11.1.1) (2026-02-20)
4+
5+
6+
### Bug Fixes
7+
8+
* improve tree-shaking ([#725](https://github.com/eslint/js/issues/725)) ([b699f32](https://github.com/eslint/js/commit/b699f3200cad596c731d077b22c239ce55fc7a06))
9+
* update acorn, fix tests ([#731](https://github.com/eslint/js/issues/731)) ([883d4cc](https://github.com/eslint/js/commit/883d4cccfcb321f83820e6d4ece4aaba7b85cb3f))
10+
11+
12+
### Dependencies
13+
14+
* The following workspace dependencies were updated
15+
* dependencies
16+
* eslint-visitor-keys bumped from ^5.0.0 to ^5.0.1
17+
318
## [11.1.0](https://github.com/eslint/js/compare/espree-v11.0.0...espree-v11.1.0) (2026-01-18)
419

520

packages/espree/espree.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ export function parse(code, options) {
254254
//------------------------------------------------------------------------------
255255

256256
/** @type {string} */
257-
export const version = "11.1.0"; // x-release-please-version
257+
export const version = "11.1.1"; // x-release-please-version
258258
export const name = "espree";
259259

260260
// Derive node types from VisitorKeys

packages/espree/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
},
1919
"./package.json": "./package.json"
2020
},
21-
"version": "11.1.0",
21+
"version": "11.1.1",
2222
"files": [
2323
"lib",
2424
"dist",
@@ -40,7 +40,7 @@
4040
"dependencies": {
4141
"acorn": "^8.16.0",
4242
"acorn-jsx": "^5.3.2",
43-
"eslint-visitor-keys": "^5.0.0"
43+
"eslint-visitor-keys": "^5.0.1"
4444
},
4545
"devDependencies": {
4646
"shelljs": "^0.8.5",

0 commit comments

Comments
 (0)