We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 205f7d1 commit e30ab58Copy full SHA for e30ab58
cmd/root.go
@@ -22,7 +22,6 @@ THE SOFTWARE.
22
package cmd
23
24
import (
25
- "fmt"
26
"github.com/betterde/gonew/internal/build"
27
"os"
28
@@ -33,7 +32,7 @@ import (
33
32
var rootCmd = &cobra.Command{
34
Use: build.Name,
35
Short: build.Desc,
36
- Version: fmt.Sprintf("Version: %s\n", build.Version),
+ Version: build.Version,
37
}
38
39
// Execute adds all child commands to the root command and sets flags appropriately.
internal/build/info.go
@@ -3,5 +3,5 @@ package build
3
var (
4
Name = "gonew"
5
Desc = "A scaffolding tool for generating new projects using project templates"
6
- Version = "v1.0.1"
+ Version = "v1.0.2"
7
)
0 commit comments