Skip to content

Commit

Permalink
create: change the default value of to false to align with the intern…
Browse files Browse the repository at this point in the history
…al version
  • Loading branch information
WineChord committed Oct 20, 2023
1 parent a5e4c51 commit 50b6edc
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log

# v1.0.4 2023-10-20

- create: change the default value of `noservicesuffix` to false to align with the internal version (!19)

# v1.0.3 2023-10-20

- version: update version (#17)
Expand Down
2 changes: 1 addition & 1 deletion cmd/create/cmdflags.go
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ func AddCreateFlags(createCmd *cobra.Command) {
createCmd.Flags().Bool("multi-version", false,
"Multi-version protocol support, true: supported; false: not supported, "+
"defaults to not support importing multiple version protocols")
createCmd.Flags().Bool("noservicesuffix", true,
createCmd.Flags().Bool("noservicesuffix", false,
"Whether the Service Descriptor naming in the generated Go stub code includes the Service suffix, "+
"defaults to false")
addOutputFlags(createCmd)
Expand Down
2 changes: 1 addition & 1 deletion config/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@
package config

// TRPCCliVersion is the version of trpc-cmdline tool.
var TRPCCliVersion = "v1.0.3"
var TRPCCliVersion = "v1.0.4"
2 changes: 1 addition & 1 deletion gobin/assets.go

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion install/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v1.0.3
v1.0.4

0 comments on commit 50b6edc

Please sign in to comment.