Skip to content

Commit f46f0c9

Browse files
committed
v4.0.0 Release
- No changes
1 parent 3b9d19b commit f46f0c9

9 files changed

Lines changed: 16 additions & 7 deletions

File tree

.Cargo.toml.swp

12 KB
Binary file not shown.

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 4.0.0
2+
3+
- No changes
4+
15
## 3.0.0
26

37
- Coauthors are now configured via Git config.

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

Formula/git-coauthor.rb

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,14 @@
11
class GitCoauthor < Formula
22
desc "List or add Git coauthors"
33
homepage "https://github.com/nicholasdower/git-coauthor"
4-
url "https://github.com/nicholasdower/git-coauthor/releases/download/v3.0.0/release.tar.gz"
5-
sha256 "5b17e85e5249fd78bff4079010444e545dea5875ad5dd3cdbde4d35e830e9b2c"
64
license "MIT"
5+
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"
8+
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"
11+
end
712

813
def install
914
bin.install "bin/git-coauthor"

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

release-arm_64.tar.gz

2.18 MB
Binary file not shown.

release-x86_64.tar.gz

1.88 MB
Binary file not shown.

script/release.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ echo "Create $x86_64_file"
3636
rm -rf bin
3737
mkdir -p bin
3838
cp target/x86_64-apple-darwin/release/git-coauthor bin/git-coauthor
39-
rm -f "$x86_file"
40-
tar -czf "$x86_file" ./man/ ./bin/
39+
rm -f "$x86_64_file"
40+
tar -czf "$x86_64_file" ./man/ ./bin/
4141

4242

4343
echo "Create $arm_64_file"

0 commit comments

Comments
 (0)