Skip to content

Commit

Permalink
chore: release main (#20)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] committed May 30, 2024
1 parent b16dd8d commit effa411
Show file tree
Hide file tree
Showing 12 changed files with 59 additions and 12 deletions.
8 changes: 4 additions & 4 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"packages/object-schema": "2.1.1",
"packages/config-array": "0.14.1",
"packages/compat": "1.0.1",
"packages/migrate-config": "0.0.0"
"packages/object-schema": "2.1.2",
"packages/config-array": "0.15.0",
"packages/compat": "1.0.2",
"packages/migrate-config": "1.0.0"
}
8 changes: 8 additions & 0 deletions packages/compat/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## [1.0.2](https://github.com/eslint/rewrite/compare/compat-v1.0.1...compat-v1.0.2) (2024-05-30)


### Bug Fixes

* npm and JSR package contents ([#16](https://github.com/eslint/rewrite/issues/16)) ([3e9eb67](https://github.com/eslint/rewrite/commit/3e9eb67964327ef908ab27fa0f14990580ec801c))
* Use types from @types/eslint ([#28](https://github.com/eslint/rewrite/issues/28)) ([e94f435](https://github.com/eslint/rewrite/commit/e94f4355c39cf4d566690fdc9180a97e06d292f1))

## [1.0.1](https://github.com/eslint/rewrite/compare/compat-v1.0.0...compat-v1.0.1) (2024-05-08)


Expand Down
2 changes: 1 addition & 1 deletion packages/compat/jsr.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@eslint/compat",
"version": "1.0.1",
"version": "1.0.2",
"exports": "./dist/esm/index.js",
"publish": {
"include": [
Expand Down
2 changes: 1 addition & 1 deletion packages/compat/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@eslint/compat",
"version": "1.0.1",
"version": "1.0.2",
"description": "Compatibility utilities for ESLint",
"type": "module",
"exports": {
Expand Down
24 changes: 24 additions & 0 deletions packages/config-array/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,29 @@
# Changelog

## [0.15.0](https://github.com/eslint/rewrite/compare/config-array-v0.14.1...config-array-v0.15.0) (2024-05-30)


### ⚠ BREAKING CHANGES

* add method `getConfigStatus`, update `isFileIgnored` ([#7](https://github.com/eslint/rewrite/issues/7))

### Features

* add method `getConfigStatus`, update `isFileIgnored` ([#7](https://github.com/eslint/rewrite/issues/7)) ([400c5f9](https://github.com/eslint/rewrite/commit/400c5f92b7370f8ab6efd1b8dcd90ac1c1d04dd4))


### Bug Fixes

* ConfigObject type ([#27](https://github.com/eslint/rewrite/issues/27)) ([e42b15d](https://github.com/eslint/rewrite/commit/e42b15dc4a424030cac97582c0d500a76b13f328))
* npm and JSR package contents ([#16](https://github.com/eslint/rewrite/issues/16)) ([3e9eb67](https://github.com/eslint/rewrite/commit/3e9eb67964327ef908ab27fa0f14990580ec801c))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* @eslint/object-schema bumped from ^2.1.1 to ^2.1.2

## [0.14.1](https://github.com/eslint/rewrite/compare/config-array-v0.14.0...config-array-v0.14.1) (2024-05-08)


Expand Down
2 changes: 1 addition & 1 deletion packages/config-array/jsr.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@eslint/config-array",
"version": "0.14.1",
"version": "0.15.0",
"exports": "./dist/esm/index.js",
"publish": {
"include": [
Expand Down
4 changes: 2 additions & 2 deletions packages/config-array/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@eslint/config-array",
"version": "0.14.1",
"version": "0.15.0",
"description": "General purpose glob-based configuration matching.",
"author": "Nicholas C. Zakas",
"type": "module",
Expand Down Expand Up @@ -43,7 +43,7 @@
],
"license": "Apache-2.0",
"dependencies": {
"@eslint/object-schema": "^2.1.1",
"@eslint/object-schema": "^2.1.2",
"debug": "^4.3.1",
"minimatch": "^3.0.5"
},
Expand Down
8 changes: 8 additions & 0 deletions packages/migrate-config/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Changelog

## 1.0.0 (2024-05-30)


### Features

* Add migrate-config CLI tool ([#26](https://github.com/eslint/rewrite/issues/26)) ([b16dd8d](https://github.com/eslint/rewrite/commit/b16dd8d33f88618feafbedf2814ee6680cd1dcd9))
2 changes: 1 addition & 1 deletion packages/migrate-config/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@eslint/migrate-config",
"version": "0.0.0",
"version": "1.0.0",
"description": "Configuration migration for ESLint",
"type": "module",
"bin": {
Expand Down
7 changes: 7 additions & 0 deletions packages/object-schema/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [2.1.2](https://github.com/eslint/rewrite/compare/object-schema-v2.1.1...object-schema-v2.1.2) (2024-05-30)


### Bug Fixes

* npm and JSR package contents ([#16](https://github.com/eslint/rewrite/issues/16)) ([3e9eb67](https://github.com/eslint/rewrite/commit/3e9eb67964327ef908ab27fa0f14990580ec801c))

## [2.1.1](https://github.com/eslint/rewrite/compare/object-schema-v2.1.0...object-schema-v2.1.1) (2024-05-08)


Expand Down
2 changes: 1 addition & 1 deletion packages/object-schema/jsr.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@eslint/object-schema",
"version": "2.1.1",
"version": "2.1.2",
"exports": "./dist/esm/index.js",
"publish": {
"include": [
Expand Down
2 changes: 1 addition & 1 deletion packages/object-schema/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@eslint/object-schema",
"version": "2.1.1",
"version": "2.1.2",
"description": "An object schema merger/validator",
"type": "module",
"exports": {
Expand Down

0 comments on commit effa411

Please sign in to comment.