Skip to content

Commit

Permalink
feat: bump version to 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Madh93 committed May 19, 2023
1 parent b1b4c7d commit 347016f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions cmd/root.go
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
package cmd

import (
"io/ioutil"
"log"
"os"
"io/ioutil"
"path/filepath"
"strings"

"github.com/hashicorp/hcl"
"github.com/spf13/cobra"
"github.com/spf13/viper"
"github.com/hashicorp/hcl"
)

var (
Expand All @@ -18,7 +18,7 @@ var (

var rootCmd = &cobra.Command{
Use: "tpm",
Version: "0.3.0",
Version: "0.4.0",
Short: "Terraform Provider Manager",
Long: "Terraform Provider Manager is a simple CLI to manage Terraform providers in the Terraform plugin cache directory",
Run: func(cmd *cobra.Command, args []string) {
Expand All @@ -43,7 +43,7 @@ func getCacheDirFromTFConfig() (string, error) {
return "", err
}

var cfg struct{
var cfg struct {
PluginCacheDir string `hcl:"plugin_cache_dir"`
}
err = hcl.Unmarshal(data, &cfg)
Expand Down

0 comments on commit 347016f

Please sign in to comment.