release v1.0.1

This commit is contained in:
2019-10-02 17:15:22 +08:00
parent 863442bbce
commit 899d0dc08f
6 changed files with 146 additions and 153 deletions

View File

@@ -24,7 +24,6 @@ import (
"fmt"
"os"
"github.com/ehlxr/hex-convert/metadata"
homedir "github.com/mitchellh/go-homedir"
"github.com/spf13/cobra"
"github.com/spf13/viper"
@@ -33,10 +32,10 @@ import (
var cfgFile string
var rootCmd = &cobra.Command{
Use: "hc",
Short: "进制转换",
Long: `支持 76 位以内的任意进制相互转换`,
Version: metadata.VERSION,
Use: "hc",
Short: "进制转换",
Long: `支持 76 位以内的任意进制相互转换`,
// Version: metadata.VERSION,
}
// Execute adds all child commands to the root command and sets flags appropriately.
@@ -51,7 +50,7 @@ func Execute() {
func init() {
cobra.OnInitialize(initConfig)
rootCmd.Flags().BoolP("version", "v", false, "show version of the hc.")
// rootCmd.Flags().BoolP("version", "v", false, "show version of the hc.")
rootCmd.PersistentFlags().IntP("scale", "s", 0, "要转换的进制")
rootCmd.PersistentFlags().StringP("data", "d", "", "要转换数值")
}

55
cmd/version.go Normal file
View File

@@ -0,0 +1,55 @@
/*
Copyright © 2019 ehlxr <ehlxr.me@gmail.com>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
*/
package cmd
import (
"encoding/base64"
"fmt"
"github.com/ehlxr/hex-convert/metadata"
"github.com/spf13/cobra"
)
var versionTpl = `%s
Name: hc
Version: %s
BuildTime: %s
GitCommit: %s
GoVersion: %s
`
// versionCmd represents the version command
var versionCmd = &cobra.Command{
Use: "version",
Short: "Print version",
Long: `
Print version of jwt`,
Run: func(cmd *cobra.Command, args []string) {
banner, _ := base64.StdEncoding.DecodeString(bannerBase64)
fmt.Printf(versionTpl, banner, metadata.Version, metadata.BuildTime, metadata.GitCommit, metadata.GoVersion)
},
}
func init() {
rootCmd.AddCommand(versionCmd)
}