Skip to content

Commit 3e9fc6e

Browse files
committed
v5.1.0 Release
- Decrease binary size.
1 parent 7157f65 commit 3e9fc6e

5 files changed

Lines changed: 11 additions & 43 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.1.0
2+
3+
- Decrease binary size.
4+
15
## 5.0.0
26

37
- Add arm build. Fix broken Homebrew version.

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

Formula/git-coauthor.rb

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +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"
5+
version "5.1.0"
66
if Hardware::CPU.arm?
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"
7+
url "https://github.com/nicholasdower/git-coauthor/releases/download/v5.1.0/git-coauthor-5.1.0-aarch64-apple-darwin.tar.gz"
8+
sha256 "33c71c5972ed55dac1d09b0e3cb75e68120f63236011403542529f69aee4f25e"
99
elsif Hardware::CPU.intel?
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"
10+
url "https://github.com/nicholasdower/git-coauthor/releases/download/v5.1.0/git-coauthor-5.1.0-x86_64-apple-darwin.tar.gz"
11+
sha256 "03f267eca91b602cbd8830402ec094d5d75bcceec95e4646f87a522261eced94"
1212
end
1313

1414
def install

README.md

Lines changed: 0 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -1,41 +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
415
```

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

0 commit comments

Comments
 (0)