Skip to content

Commit

Permalink
Merge branch '2650-remove-either-error' into 2650-remove-either-trans…
Browse files Browse the repository at this point in the history
…port
  • Loading branch information
thomaseizinger authored Jan 17, 2023
2 parents 7060f4b + bb84906 commit fdfaf72
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -298,11 +298,12 @@ jobs:
require_scope: false

- name: Check PR title length
env:
TITLE: ${{ github.event.pull_request.title }}
run: |
title="${{ github.event.pull_request.title }}"
title_length=${#title}
title_length=${#TITLE}
if [ $title_length -gt 72 ]
then
echo "PR title is too long (greater than 72 characters)"
exit 1
fi
fi
4 changes: 2 additions & 2 deletions core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

- Improve error messages in case keys cannot be decoded because of missing feature flags. See [PR 2972].

- Remove `EitherError` in favor of `either::Either`. See [PR XXXX].
- Remove `EitherError` in favor of `either::Either`. See [PR 3337].

- Remove `EitherTransport` in favor of implementing `Transport` on `either::Either`. See [PR XXXX].

Expand All @@ -21,7 +21,7 @@
[PR 3097]: https://github.com/libp2p/rust-libp2p/pull/3097
[PR 3090]: https://github.com/libp2p/rust-libp2p/pull/3090
[PR 2972]: https://github.com/libp2p/rust-libp2p/pull/2972
[PR XXXX]: https://github.com/libp2p/rust-libp2p/pull/XXXX
[PR 3337]: https://github.com/libp2p/rust-libp2p/pull/3337

# 0.37.0

Expand Down

0 comments on commit fdfaf72

Please sign in to comment.