File tree Expand file tree Collapse file tree 7 files changed +8
-48
lines changed
Expand file tree Collapse file tree 7 files changed +8
-48
lines changed Original file line number Diff line number Diff line change 11[bumpversion]
2- current_version = 0.6.0
2+ current_version = 0.6.1
33commit = True
44
55[bumpversion:file:README.md]
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 33[ ![ CircleCI] ( https://circleci.com/gh/jkawamoto/go-pixeldrain.svg?style=svg )] ( https://circleci.com/gh/jkawamoto/go-pixeldrain )
44[ ![ Go Reference] ( https://pkg.go.dev/badge/github.com/jkawamoto/go-pixeldrain.svg )] ( https://pkg.go.dev/github.com/jkawamoto/go-pixeldrain )
55[ ![ codecov] ( https://codecov.io/gh/jkawamoto/go-pixeldrain/branch/master/graph/badge.svg?token=ppX3MVIqWA )] ( https://codecov.io/gh/jkawamoto/go-pixeldrain )
6- [ ![ Release] ( https://img.shields.io/badge/release-0.6.0 -brightgreen.svg )] ( https://github.com/jkawamoto/go-pixeldrain/releases/tag/v0.6.0 )
6+ [ ![ Release] ( https://img.shields.io/badge/release-0.6.1 -brightgreen.svg )] ( https://github.com/jkawamoto/go-pixeldrain/releases/tag/v0.6.1 )
77
88
99## Usage
Original file line number Diff line number Diff line change @@ -126,7 +126,7 @@ func CmdDownload(c *cli.Context) error {
126126 }
127127
128128 prompt := & survey.MultiSelect {
129- Message : "What days do you prefer :" ,
129+ Message : "Which files do you want to download :" ,
130130 Options : make ([]string , len (res .Payload .Files )),
131131 }
132132 for i , f := range res .Payload .Files {
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ const (
2525 // Name defines the basename of this program.
2626 Name = "pd"
2727 // Version defines current version number.
28- Version = "0.6.0 "
28+ Version = "0.6.1 "
2929)
3030
3131// commandNotFound shows error message and exit when a given command is not found.
Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ module github.com/jkawamoto/go-pixeldrain
33go 1.20
44
55require (
6+ github.com/AlecAivazis/survey/v2 v2.3.6
67 github.com/cheggaaa/pb/v3 v3.1.2
78 github.com/go-openapi/errors v0.20.3
89 github.com/go-openapi/runtime v0.25.0
@@ -14,7 +15,6 @@ require (
1415)
1516
1617require (
17- github.com/AlecAivazis/survey/v2 v2.3.6 // indirect
1818 github.com/VividCortex/ewma v1.2.0 // indirect
1919 github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2 // indirect
2020 github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect
@@ -42,7 +42,7 @@ require (
4242 go.mongodb.org/mongo-driver v1.11.3 // indirect
4343 go.opentelemetry.io/otel v1.14.0 // indirect
4444 go.opentelemetry.io/otel/trace v1.14.0 // indirect
45- golang.org/x/sys v0.6 .0 // indirect
45+ golang.org/x/sys v0.7 .0 // indirect
4646 golang.org/x/term v0.6.0 // indirect
4747 golang.org/x/text v0.8.0 // indirect
4848 gopkg.in/yaml.v2 v2.4.0 // indirect
Original file line number Diff line number Diff line change @@ -232,6 +232,8 @@ golang.org/x/sys v0.0.0-20220422013727-9388b58f7150/go.mod h1:oPkhp1MJrh7nUepCBc
232232golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab /go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg =
233233golang.org/x/sys v0.6.0 h1:MVltZSvRTcU2ljQOhs94SXPftV6DCNnZViHeQps87pQ =
234234golang.org/x/sys v0.6.0 /go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg =
235+ golang.org/x/sys v0.7.0 h1:3jlCCIQZPdOYu1h8BkNvLz8Kgwtae2cagcG/VamtZRU =
236+ golang.org/x/sys v0.7.0 /go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg =
235237golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1 /go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo =
236238golang.org/x/term v0.0.0-20210503060354-a79de5458b56 /go.mod h1:tfny5GFUkzUvx4ps4ajbZsCe5lw1metzhBm9T3x7oIY =
237239golang.org/x/term v0.6.0 h1:clScbb1cHjoCkyRbWwBEUZ5H/tIFu5TAXIqaZD0Gcjw =
You can’t perform that action at this time.
0 commit comments