Skip to content

Commit

Permalink
chore(release): 41.0.0 [skip ci]
Browse files Browse the repository at this point in the history
## [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))
  • Loading branch information
semantic-release-bot committed Sep 30, 2023
1 parent 5fadfb7 commit eac17f8
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 @@
## [41.0.0](https://github.com/ipfs/aegir/compare/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](https://github.com/ipfs/aegir/issues/1374)) ([5fadfb7](https://github.com/ipfs/aegir/commit/5fadfb70dc7874acb9265bcdc6b5da4a9d110ad1))

## [40.0.13](https://github.com/ipfs/aegir/compare/v40.0.12...v40.0.13) (2023-09-07)


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": "aegir",
"version": "40.0.13",
"version": "41.0.0",
"description": "JavaScript project management",
"license": "Apache-2.0 OR MIT",
"homepage": "https://github.com/ipfs/aegir#readme",
Expand Down

0 comments on commit eac17f8

Please sign in to comment.