Skip to content

Commit 3649952

Browse files
authored
Merge pull request #40 from jkawamoto/hotfix/v0.6.1
Hotfix/v0.6.1
2 parents d8b4c0e + f60b991 commit 3649952

File tree

7 files changed

+8
-48
lines changed

7 files changed

+8
-48
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.6.0
2+
current_version = 0.6.1
33
commit = True
44

55
[bumpversion:file:README.md]

CHANGELOG.md

Lines changed: 0 additions & 42 deletions
This file was deleted.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
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

cmd/pd/command/download.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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 {

cmd/pd/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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.

go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ module github.com/jkawamoto/go-pixeldrain
33
go 1.20
44

55
require (
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

1617
require (
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

go.sum

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -232,6 +232,8 @@ golang.org/x/sys v0.0.0-20220422013727-9388b58f7150/go.mod h1:oPkhp1MJrh7nUepCBc
232232
golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
233233
golang.org/x/sys v0.6.0 h1:MVltZSvRTcU2ljQOhs94SXPftV6DCNnZViHeQps87pQ=
234234
golang.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=
235237
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo=
236238
golang.org/x/term v0.0.0-20210503060354-a79de5458b56/go.mod h1:tfny5GFUkzUvx4ps4ajbZsCe5lw1metzhBm9T3x7oIY=
237239
golang.org/x/term v0.6.0 h1:clScbb1cHjoCkyRbWwBEUZ5H/tIFu5TAXIqaZD0Gcjw=

0 commit comments

Comments
 (0)