Skip to content

Commit

Permalink
docs: revise version number to 1.5.4
Browse files Browse the repository at this point in the history
  • Loading branch information
mstxq17 committed Nov 12, 2023
1 parent 6ab6a74 commit 85999c4
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ go install github.com/mstxq17/MoreFind@latest
```
方式二: 直接安装二进制文件
```bash
wget --no-check-certificate https://ghproxy.com/https://github.com/mstxq17/MoreFind/releases/download/v1.5.3/MoreFind_v1.5.3_`uname -s`_`uname -m`.tar.gz
tar -xzvf MoreFind_v1.5.3_`uname -s`_`uname -m`.tar.gz
wget --no-check-certificate https://ghproxy.com/https://github.com/mstxq17/MoreFind/releases/download/v1.5.4/MoreFind_v1.5.4_`uname -s`_`uname -m`.tar.gz
tar -xzvf MoreFind_v1.5.4_`uname -s`_`uname -m`.tar.gz
sudo mv ./MoreFind /usr/bin/MoreFind && chmod +x /usr/bin/MoreFind
```

Expand Down
6 changes: 4 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,10 @@ require (
github.com/cheggaaa/pb/v3 v3.1.4
github.com/google/go-github/v30 v30.1.0
github.com/minio/selfupdate v0.6.0
github.com/pbnjay/grate v0.0.0-20231006022435-3f8e65d74a14
github.com/pkg/errors v0.9.1
github.com/stretchr/testify v1.7.0
github.com/stretchr/testify v1.8.0
github.com/tealeg/xlsx v1.0.5
)

require (
Expand All @@ -32,5 +34,5 @@ require (
github.com/spf13/pflag v1.0.5 // indirect
golang.org/x/crypto v0.13.0 // indirect
golang.org/x/sys v0.12.0 // indirect
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
2 changes: 1 addition & 1 deletion vars/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ package vars

// VERSION number
// 版本号
const VERSION string = "1.5.3"
const VERSION string = "1.5.4"

0 comments on commit 85999c4

Please sign in to comment.