Skip to content

Commit c852c1b

Browse files
committed
v5.0.0 Release
- Add arm build. Fix broken Homebrew version.
1 parent bd644c5 commit c852c1b

6 files changed

Lines changed: 12 additions & 53 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 5.0.0
2+
3+
- Add arm build. Fix broken Homebrew version.
4+
15
## 4.0.0
26

37
- No changes

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 = "4.0.0"
5+
version = "5.0.0"
66
edition = "2021"
77
authors = ["Nick Dower <nicholasdower@gmail.com>"]
88

Formula/git-coauthor.rb

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,13 @@ class GitCoauthor < Formula
22
desc "List or add Git coauthors"
33
homepage "https://github.com/nicholasdower/git-coauthor"
44
license "MIT"
5+
version "5.0.0"
56
if Hardware::CPU.arm?
6-
url "https://github.com/nicholasdower/git-coauthor/releases/download/v4.0.0/release-arm_64.tar.gz"
7-
sha256 "8cbb36ff11d37115e9905cc60d8cd0641a7c1f4c30f07267886e201a9fe9e6cc"
7+
url "https://github.com/nicholasdower/git-coauthor/releases/download/v5.0.0/git-coauthor-5.0.0-arm_64.tar.gz"
8+
sha256 "3d1bbe095867772229d3011b97db716c82d98312fd74f959fcb1df307718bc95"
89
elsif Hardware::CPU.intel?
9-
url "https://github.com/nicholasdower/git-coauthor/releases/download/v4.0.0/release-x86_64.tar.gz"
10-
sha256 "2b02c32d6731a0cf0c5e9a8c48c6009b42a795c4411b1e91813571c35799d059"
10+
url "https://github.com/nicholasdower/git-coauthor/releases/download/v5.0.0/git-coauthor-5.0.0-x86_64.tar.gz"
11+
sha256 "609722d7ff7f77a9861a31a2ec9c1e29facf471f973e6f7ac64d4758d3969f16"
1112
end
1213

1314
def install

README.md

Lines changed: 0 additions & 46 deletions
Original file line numberDiff line numberDiff line change
@@ -1,51 +1,5 @@
11
# git-coauthor
22

33
```
4-
usage: git coauthor [-d] [<alias>...]
54
6-
List, add or delete Git coauthors
7-
8-
Options
9-
10-
-d, --delete Delete coauthors.
11-
-h, --help Print help.
12-
-v, --version Print version.
13-
14-
Configuration
15-
16-
Add a coauthor to the Git configuration:
17-
18-
git config --add coauthor.foo 'Foo <foo@foo.com>'
19-
20-
Remove a coauthor from the Git configuration:
21-
22-
git config --unset coauthor.foo
23-
24-
Examples
25-
26-
List coauthors on the HEAD commit:
27-
28-
git coauthor
29-
30-
Add coauthors to the HEAD commit:
31-
32-
git coauthor foo bar
33-
34-
Delete coauthors from the HEAD commit:
35-
36-
git coauthor -d foo bar
37-
38-
Delete all coauthors from the HEAD commit:
39-
40-
git coauthor -d
41-
42-
Installation
43-
44-
Install:
45-
46-
brew install nicholasdower/tap/git-coauthor
47-
48-
Uninstall:
49-
50-
brew uninstall git-coauthor
515
```

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 2024-02-13 4.0.0 Git\ Manual
1+
.TH GIT\-COAUTHOR 1 2024-02-13 5.0.0 Git\ Manual
22
.SH NAME
33
\fBgit\-coauthor\fR \- List, add or delete Git coauthors
44
.SH SYNOPSIS

0 commit comments

Comments
 (0)