Skip to content

Commit 29b9cda

Browse files
committed
v6.1.1 Release
- Update help and man page.
1 parent 2973ee4 commit 29b9cda

6 files changed

Lines changed: 21 additions & 17 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 6.1.1
2+
3+
- Update help and man page.
4+
15
## 6.1.0
26

37
- Add a blank line between commit message body and coauthors section.

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[package]
44
name = "git-coauthor"
5-
version = "6.1.0"
5+
version = "6.1.1"
66
edition = "2021"
77
authors = ["Nick Dower <nicholasdower@gmail.com>"]
88

Formula/git-coauthor.rb

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,20 @@ class GitCoauthor < Formula
22
desc "List, add or delete Git coauthors"
33
homepage "https://github.com/nicholasdower/git-coauthor"
44
license "MIT"
5-
version "6.1.0"
5+
version "6.1.1"
66

7-
url "https://github.com/nicholasdower/git-coauthor/releases/download/v6.1.0/git-coauthor-6.1.0.tar.gz"
8-
sha256 "27f88c2047aa817b21d71e0514bdf74b663ab8a405364f4751fbbe78ad64c484"
7+
url "https://github.com/nicholasdower/git-coauthor/releases/download/v6.1.1/git-coauthor-6.1.1.tar.gz"
8+
sha256 "457b25127f7e585044966a6e87985bf3cfaeeee2dfa1d6b7ba4e3a254bf62b89"
99

1010
bottle do
1111
rebuild 1
12-
root_url "https://github.com/nicholasdower/git-coauthor/releases/download/v6.1.0/"
13-
sha256 cellar: :any, monterey: "595694a5fe05133cd4c5ab190f518a5187f0f0fe5fdc0c2632c486e0e1452a77"
14-
sha256 cellar: :any, ventura: "595694a5fe05133cd4c5ab190f518a5187f0f0fe5fdc0c2632c486e0e1452a77"
15-
sha256 cellar: :any, sonoma: "595694a5fe05133cd4c5ab190f518a5187f0f0fe5fdc0c2632c486e0e1452a77"
16-
sha256 cellar: :any, arm64_sonoma: "ccf9e086c2d82b8150d6bfbbcc04b1d0df39407bda9ff745c78522da7d94fa09"
17-
sha256 cellar: :any, arm64_monterey: "ccf9e086c2d82b8150d6bfbbcc04b1d0df39407bda9ff745c78522da7d94fa09"
18-
sha256 cellar: :any, arm64_ventura: "ccf9e086c2d82b8150d6bfbbcc04b1d0df39407bda9ff745c78522da7d94fa09"
12+
root_url "https://github.com/nicholasdower/git-coauthor/releases/download/v6.1.1/"
13+
sha256 cellar: :any, monterey: "dcc4b8a2f1e05e211231ce26a55c78c07ccfe38eab52db97e04ac9727c23ef87"
14+
sha256 cellar: :any, ventura: "dcc4b8a2f1e05e211231ce26a55c78c07ccfe38eab52db97e04ac9727c23ef87"
15+
sha256 cellar: :any, sonoma: "dcc4b8a2f1e05e211231ce26a55c78c07ccfe38eab52db97e04ac9727c23ef87"
16+
sha256 cellar: :any, arm64_sonoma: "8cabe810804a31cc034ae350d5bb3ea0da3ebd9b80055b9ed3139944c8315386"
17+
sha256 cellar: :any, arm64_monterey: "8cabe810804a31cc034ae350d5bb3ea0da3ebd9b80055b9ed3139944c8315386"
18+
sha256 cellar: :any, arm64_ventura: "8cabe810804a31cc034ae350d5bb3ea0da3ebd9b80055b9ed3139944c8315386"
1919
end
2020

2121
depends_on "rust" => :build

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ List, add or delete Git coauthors
2222
Description
2323
2424
Git coauthor manages "Co-authored-by" lines on the HEAD commit. Coauthors
25-
are specified as name or email details from the repository's commit history
26-
or as aliases configured via `git config`.
25+
may be specified as name or email details from the repository's commit history
26+
or as aliases configured via Git config.
2727
2828
Options
2929
@@ -51,13 +51,13 @@ Examples
5151
5252
git coauthor Joe
5353
git coauthor Joe Jim
54-
git coauthor "Joe Blow" "Jim Bob"
54+
git coauthor 'Joe Blow' 'Jim Bob'
5555
5656
Delete coauthors from the HEAD commit:
5757
5858
git coauthor -d Joe
5959
git coauthor -d Joe Jim
60-
git coauthor -d "Joe Blow" "Jim Bob"
60+
git coauthor -d 'Joe Blow' 'Jim Bob'
6161
6262
Delete all coauthors from the HEAD commit:
6363

man/git-coauthor.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH GIT\-COAUTHOR 1 2023-02-29 6.1.0 Git\ Manual
1+
.TH GIT\-COAUTHOR 1 2024-02-29 6.1.1 Git\ Manual
22
.SH NAME
33
\fBgit\-coauthor\fR \- List, add or delete Git coauthors
44
.SH SYNOPSIS

0 commit comments

Comments
 (0)