From 7c1d46afc7d90ae8a176ca1c738b46c167d514e5 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Fri, 29 Sep 2023 14:47:56 +0000 Subject: [PATCH] chore(release): 6.0.0 [skip ci] MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## [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)) --- CHANGELOG.md | 25 +++++++++++++++++++++++++ package.json | 2 +- 2 files changed, 26 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0922dfe..864ab71 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/package.json b/package.json index 8b68ea6..618b688 100644 --- a/package.json +++ b/package.json @@ -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",