From bbb1aa10bdc03b233992b9909d05fedd9222dbba Mon Sep 17 00:00:00 2001 From: ktr Date: Fri, 4 Sep 2020 23:24:24 +0900 Subject: [PATCH] bump to v0.9.1 (#306) --- .../fixtures/apply_some_proto_files_and_paths.golden.toml | 4 ++-- ..._both_of_global_and_local_config_are_not_found.golden.toml | 2 +- config/testdata/fixtures/will_be_apply_flags.golden.toml | 2 +- .../fixtures/teste2e_cli-print_call_command_usage.golden | 2 +- .../fixtures/teste2e_cli-print_desc_command_usage.golden | 2 +- .../fixtures/teste2e_cli-print_list_command_usage.golden | 2 +- .../teste2e_cli-print_usage_text_to_the_writer.golden | 2 +- ...2e_cli-print_usage_text_to_the_writer_(common_flag).golden | 2 +- meta/meta.go | 2 +- 9 files changed, 10 insertions(+), 10 deletions(-) diff --git a/config/testdata/fixtures/apply_some_proto_files_and_paths.golden.toml b/config/testdata/fixtures/apply_some_proto_files_and_paths.golden.toml index 05386725..3955c1cb 100644 --- a/config/testdata/fixtures/apply_some_proto_files_and_paths.golden.toml +++ b/config/testdata/fixtures/apply_some_proto_files_and_paths.golden.toml @@ -1,8 +1,8 @@ [default] package = "" - protofile = ["hoge","fuga"] - protopath = ["foo","bar"] + protofile = ["hoge", "fuga"] + protopath = ["foo", "bar"] service = "" [log] diff --git a/config/testdata/fixtures/create_a_default_global_config_if_both_of_global_and_local_config_are_not_found.golden.toml b/config/testdata/fixtures/create_a_default_global_config_if_both_of_global_and_local_config_are_not_found.golden.toml index 39318a48..8baa5f47 100644 --- a/config/testdata/fixtures/create_a_default_global_config_if_both_of_global_and_local_config_are_not_found.golden.toml +++ b/config/testdata/fixtures/create_a_default_global_config_if_both_of_global_and_local_config_are_not_found.golden.toml @@ -10,7 +10,7 @@ [meta] autoupdate = false - configversion = "0.9.0" + configversion = "0.9.1" updatelevel = "patch" [repl] diff --git a/config/testdata/fixtures/will_be_apply_flags.golden.toml b/config/testdata/fixtures/will_be_apply_flags.golden.toml index be33aadf..7894afb2 100644 --- a/config/testdata/fixtures/will_be_apply_flags.golden.toml +++ b/config/testdata/fixtures/will_be_apply_flags.golden.toml @@ -2,7 +2,7 @@ [default] package = "" protofile = [] - protopath = ["bar","yoko.touma"] + protopath = ["bar", "yoko.touma"] service = "" [log] diff --git a/e2e/testdata/fixtures/teste2e_cli-print_call_command_usage.golden b/e2e/testdata/fixtures/teste2e_cli-print_call_command_usage.golden index 83971261..d3e6046c 100644 --- a/e2e/testdata/fixtures/teste2e_cli-print_call_command_usage.golden +++ b/e2e/testdata/fixtures/teste2e_cli-print_call_command_usage.golden @@ -1,4 +1,4 @@ -evans 0.9.0 +evans 0.9.1 Usage: evans [global options ...] cli call [options ...] diff --git a/e2e/testdata/fixtures/teste2e_cli-print_desc_command_usage.golden b/e2e/testdata/fixtures/teste2e_cli-print_desc_command_usage.golden index 2b498055..36ff33c0 100644 --- a/e2e/testdata/fixtures/teste2e_cli-print_desc_command_usage.golden +++ b/e2e/testdata/fixtures/teste2e_cli-print_desc_command_usage.golden @@ -1,4 +1,4 @@ -evans 0.9.0 +evans 0.9.1 Usage: evans [global options ...] cli desc [options ...] [symbol] diff --git a/e2e/testdata/fixtures/teste2e_cli-print_list_command_usage.golden b/e2e/testdata/fixtures/teste2e_cli-print_list_command_usage.golden index d89ade05..33ff5cad 100644 --- a/e2e/testdata/fixtures/teste2e_cli-print_list_command_usage.golden +++ b/e2e/testdata/fixtures/teste2e_cli-print_list_command_usage.golden @@ -1,4 +1,4 @@ -evans 0.9.0 +evans 0.9.1 Usage: evans [global options ...] cli list [options ...] [fully-qualified service/method name] diff --git a/e2e/testdata/fixtures/teste2e_cli-print_usage_text_to_the_writer.golden b/e2e/testdata/fixtures/teste2e_cli-print_usage_text_to_the_writer.golden index 3aa07c0d..2a6ff525 100644 --- a/e2e/testdata/fixtures/teste2e_cli-print_usage_text_to_the_writer.golden +++ b/e2e/testdata/fixtures/teste2e_cli-print_usage_text_to_the_writer.golden @@ -1,4 +1,4 @@ -evans 0.9.0 +evans 0.9.1 Usage: evans [global options ...] cli diff --git a/e2e/testdata/fixtures/teste2e_cli-print_usage_text_to_the_writer_(common_flag).golden b/e2e/testdata/fixtures/teste2e_cli-print_usage_text_to_the_writer_(common_flag).golden index 3aa07c0d..2a6ff525 100644 --- a/e2e/testdata/fixtures/teste2e_cli-print_usage_text_to_the_writer_(common_flag).golden +++ b/e2e/testdata/fixtures/teste2e_cli-print_usage_text_to_the_writer_(common_flag).golden @@ -1,4 +1,4 @@ -evans 0.9.0 +evans 0.9.1 Usage: evans [global options ...] cli diff --git a/meta/meta.go b/meta/meta.go index be344c06..f08d6ec8 100644 --- a/meta/meta.go +++ b/meta/meta.go @@ -5,5 +5,5 @@ import version "github.com/hashicorp/go-version" const AppName = "evans" var ( - Version = version.Must(version.NewSemver("0.9.0")) + Version = version.Must(version.NewSemver("0.9.1")) )