Skip to content

Commit 0b3fea7

Browse files
committed
update release script
1 parent 49edb29 commit 0b3fea7

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.1.0
1+
3.1.2

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ dist: clean vendor browserpass-linux64 browserpass-arm browserpass-arm64 browser
107107

108108
mkdir -p dist
109109
mv "$(TMP)/"*.tar.gz "$(TMP)/"*.msi dist
110-
git -c tar.tar.gz.command="gzip -cn" archive -o dist/browserpass-native-$(VERSION).tar.gz --format tar.gz --prefix=browserpass-native-$(VERSION)/ $(VERSION)
110+
git -c tar.tar.gz.command="gzip -cn" archive -o dist/browserpass-native-$(VERSION).tar.gz --format tar.gz --prefix=browserpass-native-$(VERSION)/ v$(VERSION)
111111

112112
for file in dist/*; do \
113113
gpg --detach-sign --armor "$$file"; \

version/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import "fmt"
44

55
const major = 3
66
const minor = 1
7-
const patch = 0
7+
const patch = 2
88

99
// Code version as integer
1010
const Code = major*1000000 + minor*1000 + patch

0 commit comments

Comments
 (0)