Skip to content

Commit 4f42cab

Browse files
committed
prepare for v0.6.5
1 parent e8fa273 commit 4f42cab

File tree

3 files changed

+45
-11
lines changed

3 files changed

+45
-11
lines changed

.goreleaser.yml

+26-4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
version: 1
2+
13
before:
24
hooks:
35
- go mod tidy
@@ -11,22 +13,42 @@ builds:
1113
goarch:
1214
- amd64
1315
- arm64
16+
- 386
17+
ignore:
18+
- goos: darwin
19+
goarch: 386
20+
- goos: linux
21+
goarch: 386
22+
- goos: freebsd
23+
goarch: 386
1424
env:
1525
- CGO_ENABLED=0
1626
flags:
1727
- -mod=readonly
1828

19-
release:
20-
prerelease: auto
21-
2229
universal_binaries:
2330
- replace: true
2431

32+
archives:
33+
- format: tar.gz
34+
# this name template makes the OS and Arch compatible with the results of `uname`.
35+
name_template: >-
36+
{{ .ProjectName }}_
37+
{{- title .Os }}_
38+
{{- if eq .Arch "amd64" }}x86_64
39+
{{- else if eq .Arch "386" }}i386
40+
{{- else }}{{ .Arch }}{{ end }}
41+
{{- if .Arm }}v{{ .Arm }}{{ end }}
42+
# use zip for windows archives
43+
format_overrides:
44+
- goos: windows
45+
format: zip
46+
2547
brews:
2648
-
2749
name: forky
2850
homepage: https://github.com/thetnaingtn/forky
29-
tap:
51+
repository:
3052
owner: thetnaingtn
3153
name: homebrew-tap
3254
commit_author:

npm/forky/package.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "forkyy",
3-
"version": "0.6.4",
3+
"version": "0.6.5",
44
"bin": "lib/index.js",
55
"description": "Synchronize your forks with ease",
66
"repository": {
@@ -25,11 +25,11 @@
2525
"typescript": "^4.9.4"
2626
},
2727
"optionalDependencies": {
28-
"forky-darwin-arm64": "0.6.4",
29-
"forky-darwin-amd64": "0.6.4",
30-
"forky-linux-arm64": "0.6.4",
31-
"forky-linux-amd64": "0.6.4",
32-
"forky-windows-arm64": "0.6.4",
33-
"forky-windows-amd64": "0.6.4"
28+
"forky-darwin-arm64": "0.6.5",
29+
"forky-darwin-amd64": "0.6.5",
30+
"forky-linux-arm64": "0.6.5",
31+
"forky-linux-amd64": "0.6.5",
32+
"forky-windows-arm64": "0.6.5",
33+
"forky-windows-amd64": "0.6.5"
3434
}
3535
}

npm/forky/tsconfig.json

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"compilerOptions": {
3+
"target": "es2016",
4+
"module": "commonjs",
5+
"esModuleInterop": true,
6+
"baseUrl": "./",
7+
"outDir": "lib",
8+
"forceConsistentCasingInFileNames": true,
9+
"strict": true,
10+
"skipLibCheck": true
11+
}
12+
}

0 commit comments

Comments
 (0)