Skip to content

Commit

Permalink
bump to v0.9.2 (#353)
Browse files Browse the repository at this point in the history
  • Loading branch information
ktr0731 authored Jan 29, 2021
1 parent 032106d commit ec24339
Show file tree
Hide file tree
Showing 9 changed files with 79 additions and 165 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

[meta]
autoupdate = false
configversion = "0.9.1"
configversion = "0.9.2"
updatelevel = "patch"

[repl]
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
evans 0.9.1
evans 0.9.2

Usage: evans [global options ...] cli call [options ...] <method>

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
evans 0.9.1
evans 0.9.2

Usage: evans [global options ...] cli desc [options ...] [symbol]

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
evans 0.9.1
evans 0.9.2

Usage: evans [global options ...] cli list [options ...] [fully-qualified service/method name]

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
evans 0.9.1
evans 0.9.2

Usage: evans [global options ...] cli

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
evans 0.9.1
evans 0.9.2

Usage: evans [global options ...] cli

Expand Down
10 changes: 0 additions & 10 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,15 @@ module github.com/ktr0731/evans
go 1.12

require (
github.com/Djarvur/go-err113 v0.1.0 // indirect
github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e
github.com/fatih/color v1.10.0
github.com/golang/protobuf v1.4.3
github.com/golangci/golangci-lint v1.35.2
github.com/golangci/misspell v0.3.5 // indirect
github.com/golangci/revgrep v0.0.0-20180812185044-276a5c0a1039 // indirect
github.com/google/go-cmp v0.5.4
github.com/goreleaser/goreleaser v0.155.0
github.com/hashicorp/go-multierror v1.1.0
github.com/hashicorp/go-version v1.2.1
github.com/jhump/protoreflect v1.5.1-0.20191024213132-10815c273d3f
github.com/jirfag/go-printf-func-name v0.0.0-20200119135958-7558a9eaa5af // indirect
github.com/k0kubun/colorstring v0.0.0-20150214042306-9440f1994b88 // indirect
github.com/k0kubun/pp v3.0.1+incompatible
github.com/kisielk/godepgraph v0.0.0-20190626013829-57a7e4a651a9
Expand All @@ -28,7 +24,6 @@ require (
github.com/ktr0731/grpc-web-go-client v0.2.7
github.com/lunixbochs/vtclean v1.0.0 // indirect
github.com/manifoldco/promptui v0.8.0
github.com/matoous/godox v0.0.0-20200801072554-4fb83dc2941e // indirect
github.com/matryer/moq v0.1.4
github.com/mattn/go-colorable v0.1.8
github.com/mattn/go-isatty v0.0.12
Expand All @@ -41,20 +36,15 @@ require (
github.com/phayes/freeport v0.0.0-20180830031419-95f893ade6f2
github.com/pkg/errors v0.9.1
github.com/pkg/term v0.0.0-20190109203006-aa71e9d9e942 // indirect
github.com/quasilyte/regex/syntax v0.0.0-20200805063351-8f842688393c // indirect
github.com/rakyll/statik v0.1.7
github.com/spf13/cobra v1.1.1
github.com/spf13/pflag v1.0.5
github.com/spf13/viper v1.7.1
github.com/stretchr/objx v0.3.0 // indirect
github.com/tdakkota/asciicheck v0.0.0-20200416200610-e657995f937b // indirect
github.com/timakin/bodyclose v0.0.0-20200424151742-cb6215831a94 // indirect
github.com/tj/go-spin v1.1.0
github.com/zchee/go-xdgbasedir v1.0.3
go.uber.org/goleak v0.10.0
golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9
golang.org/x/tools v0.0.0-20210105210202-9ed45478a130
google.golang.org/genproto v0.0.0-20201203001206-6486ece9c497
google.golang.org/grpc v1.35.0
gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776 // indirect
)
220 changes: 72 additions & 148 deletions go.sum

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion meta/meta.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ import version "github.com/hashicorp/go-version"
const AppName = "evans"

var (
Version = version.Must(version.NewSemver("0.9.1"))
Version = version.Must(version.NewSemver("0.9.2"))
)

0 comments on commit ec24339

Please sign in to comment.