Skip to content

Commit 80eb545

Browse files
chore: release main (#124)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 0008606 commit 80eb545

File tree

12 files changed

+48
-14
lines changed

12 files changed

+48
-14
lines changed

.release-please-manifest.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
2-
"packages/compat": "1.2.0",
2+
"packages/compat": "1.2.1",
33
"packages/config-array": "0.18.0",
4-
"packages/core": "0.6.0",
5-
"packages/migrate-config": "1.3.1",
4+
"packages/core": "0.7.0",
5+
"packages/migrate-config": "1.3.2",
66
"packages/object-schema": "2.1.4",
7-
"packages/plugin-kit": "0.2.0"
7+
"packages/plugin-kit": "0.2.1"
88
}

packages/compat/CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Changelog
22

3+
## [1.2.1](https://github.com/eslint/rewrite/compare/compat-v1.2.0...compat-v1.2.1) (2024-10-18)
4+
5+
6+
### Dependencies
7+
8+
* The following workspace dependencies were updated
9+
* devDependencies
10+
* @eslint/core bumped from ^0.6.0 to ^0.7.0
11+
312
## [1.2.0](https://github.com/eslint/rewrite/compare/compat-v1.1.1...compat-v1.2.0) (2024-10-01)
413

514

packages/compat/jsr.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@eslint/compat",
3-
"version": "1.2.0",
3+
"version": "1.2.1",
44
"exports": "./dist/esm/index.js",
55
"publish": {
66
"include": [

packages/compat/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@eslint/compat",
3-
"version": "1.2.0",
3+
"version": "1.2.1",
44
"description": "Compatibility utilities for ESLint",
55
"type": "module",
66
"main": "dist/esm/index.js",
@@ -48,7 +48,7 @@
4848
},
4949
"homepage": "https://github.com/eslint/rewrite#readme",
5050
"devDependencies": {
51-
"@eslint/core": "^0.6.0",
51+
"@eslint/core": "^0.7.0",
5252
"c8": "^9.1.0",
5353
"eslint": "^9.11.0",
5454
"mocha": "^10.4.0",

packages/core/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## [0.7.0](https://github.com/eslint/rewrite/compare/core-v0.6.0...core-v0.7.0) (2024-10-18)
4+
5+
6+
### Features
7+
8+
* Add `Language.defaultLanguageOptions` ([#123](https://github.com/eslint/rewrite/issues/123)) ([1ecf0f8](https://github.com/eslint/rewrite/commit/1ecf0f88808a7629e06e949dea8eb1ec4fd2f472))
9+
310
## [0.6.0](https://github.com/eslint/rewrite/compare/core-v0.5.0...core-v0.6.0) (2024-08-30)
411

512

packages/core/jsr.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@eslint/core",
3-
"version": "0.6.0",
3+
"version": "0.7.0",
44
"exports": "./dist/esm/types.d.ts",
55
"publish": {
66
"include": [

packages/core/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@eslint/core",
3-
"version": "0.6.0",
3+
"version": "0.7.0",
44
"description": "Runtime-agnostic core of ESLint",
55
"type": "module",
66
"types": "./dist/esm/types.d.ts",

packages/migrate-config/CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Changelog
22

3+
## [1.3.2](https://github.com/eslint/rewrite/compare/migrate-config-v1.3.1...migrate-config-v1.3.2) (2024-10-18)
4+
5+
6+
### Dependencies
7+
8+
* The following workspace dependencies were updated
9+
* dependencies
10+
* @eslint/compat bumped from ^1.2.0 to ^1.2.1
11+
312
## [1.3.1](https://github.com/eslint/rewrite/compare/migrate-config-v1.3.0...migrate-config-v1.3.1) (2024-10-01)
413

514

packages/migrate-config/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@eslint/migrate-config",
3-
"version": "1.3.1",
3+
"version": "1.3.2",
44
"description": "Configuration migration for ESLint",
55
"type": "module",
66
"bin": {
@@ -46,7 +46,7 @@
4646
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
4747
},
4848
"dependencies": {
49-
"@eslint/compat": "^1.2.0",
49+
"@eslint/compat": "^1.2.1",
5050
"@eslint/eslintrc": "^3.1.0",
5151
"camelcase": "^8.0.0",
5252
"recast": "^0.23.7"

packages/plugin-kit/CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Changelog
22

3+
## [0.2.1](https://github.com/eslint/rewrite/compare/plugin-kit-v0.2.0...plugin-kit-v0.2.1) (2024-10-18)
4+
5+
6+
### Dependencies
7+
8+
* The following workspace dependencies were updated
9+
* devDependencies
10+
* @eslint/core bumped from ^0.6.0 to ^0.7.0
11+
312
## [0.2.0](https://github.com/eslint/rewrite/compare/plugin-kit-v0.1.0...plugin-kit-v0.2.0) (2024-08-30)
413

514

packages/plugin-kit/jsr.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@eslint/plugin-kit",
3-
"version": "0.2.0",
3+
"version": "0.2.1",
44
"exports": "./dist/esm/index.js",
55
"publish": {
66
"include": [

packages/plugin-kit/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@eslint/plugin-kit",
3-
"version": "0.2.0",
3+
"version": "0.2.1",
44
"description": "Utilities for building ESLint plugins.",
55
"author": "Nicholas C. Zakas",
66
"type": "module",
@@ -46,7 +46,7 @@
4646
],
4747
"license": "Apache-2.0",
4848
"devDependencies": {
49-
"@eslint/core": "^0.6.0",
49+
"@eslint/core": "^0.7.0",
5050
"c8": "^9.1.0",
5151
"mocha": "^10.4.0",
5252
"rollup": "^4.16.2",

0 commit comments

Comments
 (0)