Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
ananthakumaran committed Aug 12, 2023
1 parent 98a522e commit f5d7709
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion cmd/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ var versionCmd = &cobra.Command{
Use: "version",
Short: "Print the version information",
Run: func(cmd *cobra.Command, args []string) {
fmt.Println("Version:", "0.4.5")
fmt.Println("Version:", "0.4.6")
},
}

Expand Down
2 changes: 0 additions & 2 deletions internal/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -120,12 +120,10 @@ func LoadConfig(content []byte, configPath string) error {

if !filepath.IsAbs(config.JournalPath) {
config.JournalPath = filepath.Join(journalDir, config.JournalPath)
println("journal absolute path" + config.JournalPath)
}

if !filepath.IsAbs(config.DBPath) {
config.DBPath = filepath.Join(journalDir, config.DBPath)
println("db absolute path" + config.DBPath)
}

return nil
Expand Down

0 comments on commit f5d7709

Please sign in to comment.