Skip to content

Commit

Permalink
chore(release): 6.0.0 [skip ci]
Browse files Browse the repository at this point in the history
## [6.0.0](v5.0.1...v6.0.0) (2023-09-29)

### ⚠ BREAKING CHANGES

* All interfaces now need to use method signature style rather than property function style

eg:
before
```ts
interface Foo {
  bar: (baz: number) => void
}
```
after
```ts
interface Foo {
  bar(baz: number): void
}
```

### Features

* add method-signature-style rule ([#190](#190)) ([8823186](8823186))
  • Loading branch information
semantic-release-bot committed Sep 29, 2023
1 parent 8823186 commit 7c1d46a
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 1 deletion.
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,28 @@
## [6.0.0](https://github.com/ipfs/eslint-config-ipfs/compare/v5.0.1...v6.0.0) (2023-09-29)


### ⚠ BREAKING CHANGES

* All interfaces now need to use method signature style rather than property function style

eg:
before
```ts
interface Foo {
bar: (baz: number) => void
}
```
after
```ts
interface Foo {
bar(baz: number): void
}
```

### Features

* add method-signature-style rule ([#190](https://github.com/ipfs/eslint-config-ipfs/issues/190)) ([8823186](https://github.com/ipfs/eslint-config-ipfs/commit/88231860087f4ff4f7c8118a84c8f64bcc81f7d0))

## [5.0.1](https://github.com/ipfs/eslint-config-ipfs/compare/v5.0.0...v5.0.1) (2023-07-26)


Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "eslint-config-ipfs",
"version": "5.0.1",
"version": "6.0.0",
"description": "ESLint Shareable Config for IPFS project",
"license": "Apache-2.0 OR MIT",
"homepage": "https://github.com/ipfs/eslint-config-ipfs#readme",
Expand Down

0 comments on commit 7c1d46a

Please sign in to comment.