Skip to content

Commit

Permalink
RELEASING.md: Include author email in shortlog (grpc#10794)
Browse files Browse the repository at this point in the history
Makes it easier to track down / credit the author.
  • Loading branch information
sergiitk committed Jan 11, 2024
1 parent 4352099 commit c346b41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion RELEASING.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ would be used to create all `v1.7` tags (e.g. `v1.7.0`, `v1.7.1`).

```bash
echo "## gRPC Java $MAJOR.$MINOR.0 Release Notes" && echo && \
git shortlog --format='%s (%h)' "$(git merge-base upstream/v$MAJOR.$((MINOR-1)).x upstream/v$MAJOR.$MINOR.x)"..upstream/v$MAJOR.$MINOR.x | cat && \
git shortlog -e --format='%s (%h)' "$(git merge-base upstream/v$MAJOR.$((MINOR-1)).x upstream/v$MAJOR.$MINOR.x)"..upstream/v$MAJOR.$MINOR.x | cat && \
echo && echo && echo "Backported commits in previous release:" && \
git log --oneline "$(git merge-base v$MAJOR.$((MINOR-1)).0 upstream/v$MAJOR.$MINOR.x)"..v$MAJOR.$((MINOR-1)).0^
```
Expand Down

0 comments on commit c346b41

Please sign in to comment.