Skip to content

Commit eac17f8

Browse files
chore(release): 41.0.0 [skip ci]
## [41.0.0](v40.0.13...v41.0.0) (2023-09-30) ### ⚠ 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 } ``` ### Dependencies * update eslint-config-ipfs ([#1374](#1374)) ([5fadfb7](5fadfb7))
1 parent 5fadfb7 commit eac17f8

File tree

2 files changed

+26
-1
lines changed

2 files changed

+26
-1
lines changed

CHANGELOG.md

+25
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,28 @@
1+
## [41.0.0](https://github.com/ipfs/aegir/compare/v40.0.13...v41.0.0) (2023-09-30)
2+
3+
4+
### ⚠ BREAKING CHANGES
5+
6+
* All interfaces now need to use method signature style rather than property function style
7+
8+
eg:
9+
before
10+
```ts
11+
interface Foo {
12+
bar: (baz: number) => void
13+
}
14+
```
15+
after
16+
```ts
17+
interface Foo {
18+
bar(baz: number): void
19+
}
20+
```
21+
22+
### Dependencies
23+
24+
* update eslint-config-ipfs ([#1374](https://github.com/ipfs/aegir/issues/1374)) ([5fadfb7](https://github.com/ipfs/aegir/commit/5fadfb70dc7874acb9265bcdc6b5da4a9d110ad1))
25+
126
## [40.0.13](https://github.com/ipfs/aegir/compare/v40.0.12...v40.0.13) (2023-09-07)
227

328

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "aegir",
3-
"version": "40.0.13",
3+
"version": "41.0.0",
44
"description": "JavaScript project management",
55
"license": "Apache-2.0 OR MIT",
66
"homepage": "https://github.com/ipfs/aegir#readme",

0 commit comments

Comments
 (0)