Skip to content

Commit

Permalink
bump to v0.10.1 (#498)
Browse files Browse the repository at this point in the history
  • Loading branch information
ktr0731 authored Jan 22, 2022
1 parent 8d2c640 commit f8f88c8
Show file tree
Hide file tree
Showing 9 changed files with 23 additions and 54 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

[meta]
autoupdate = false
configversion = "0.10.0"
configversion = "0.10.1"
updatelevel = "patch"

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

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.10.0
evans 0.10.1

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.10.0
evans 0.10.1

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.10.0
evans 0.10.1

Usage: evans [global options ...] cli

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
evans 0.10.0
evans 0.10.1

Usage: evans [global options ...] cli

Expand Down
9 changes: 6 additions & 3 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -91,13 +91,19 @@ require (
github.com/caarlos0/go-shellwords v1.0.12 // indirect
github.com/cavaliercoder/go-cpio v0.0.0-20180626203310-925f9528c45e // indirect
github.com/cenkalti/backoff v2.2.1+incompatible // indirect
github.com/census-instrumentation/opencensus-proto v0.3.0 // indirect
github.com/cespare/xxhash/v2 v2.1.2 // indirect
github.com/cncf/udpa/go v0.0.0-20210930031921-04548b0d99d4 // indirect
github.com/cncf/xds/go v0.0.0-20211130200136-a8f946100490 // indirect
github.com/cpuguy83/go-md2man/v2 v2.0.1 // indirect
github.com/desertbit/timer v0.0.0-20180107155436-c41aec40b27f // indirect
github.com/dghubble/go-twitter v0.0.0-20210609183100-2fdbf421508e // indirect
github.com/dghubble/oauth1 v0.7.0 // indirect
github.com/dghubble/sling v1.3.0 // indirect
github.com/dimchansky/utfbom v1.1.1 // indirect
github.com/emirpasic/gods v1.12.0 // indirect
github.com/envoyproxy/go-control-plane v0.10.1 // indirect
github.com/envoyproxy/protoc-gen-validate v0.6.2 // indirect
github.com/fsnotify/fsnotify v1.5.1 // indirect
github.com/gin-gonic/gin v1.7.4 // indirect
github.com/go-git/gcfg v1.5.0 // indirect
Expand Down Expand Up @@ -129,12 +135,10 @@ require (
github.com/inconshreveable/mousetrap v1.0.0 // indirect
github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect
github.com/jmespath/go-jmespath v0.4.0 // indirect
github.com/juju/ansiterm v0.0.0-20180109212912-720a0952cc2a // indirect
github.com/k0kubun/colorstring v0.0.0-20150214042306-9440f1994b88 // indirect
github.com/kevinburke/ssh_config v1.1.0 // indirect
github.com/klauspost/compress v1.13.5 // indirect
github.com/ktr0731/dept v0.1.3 // indirect
github.com/lunixbochs/vtclean v0.0.0-20180621232353-2d01aacdc34a // indirect
github.com/magiconair/properties v1.8.5 // indirect
github.com/mattn/go-ieproxy v0.0.1 // indirect
github.com/mattn/go-pipeline v0.0.0-20170920030317-cfb87a531e2b // indirect
Expand All @@ -149,7 +153,6 @@ require (
github.com/russross/blackfriday/v2 v2.1.0 // indirect
github.com/sassoftware/go-rpmutils v0.0.0-20190420191620-a8f1baeba37b // indirect
github.com/sergi/go-diff v1.2.0 // indirect
github.com/shurcooL/sanitized_anchor_name v1.0.0 // indirect
github.com/slack-go/slack v0.9.4 // indirect
github.com/spf13/afero v1.6.0 // indirect
github.com/spf13/cast v1.4.1 // indirect
Expand Down
54 changes: 10 additions & 44 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.10.0"))
Version = version.Must(version.NewSemver("0.10.1"))
)

0 comments on commit f8f88c8

Please sign in to comment.