Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
czerwonk committed Mar 19, 2021
1 parent 8d92de8 commit 9b0da38
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import (
"gopkg.in/alecthomas/kingpin.v2"
)

const version string = "0.4.5"
const version string = "0.4.6"

var (
showVersion = kingpin.Flag("version", "Print version information").Default().Bool()
Expand Down Expand Up @@ -110,9 +110,9 @@ func printVersion() {

func startMonitor(cfg *config.Config) (*mon.Monitor, error) {
resolver := setupResolver(cfg)
var bind4,bind6 string
var bind4, bind6 string
if ln, err := net.Listen("tcp4", "127.0.0.1:0"); err == nil {
//ipv4 enabled
//ipv4 enabled
ln.Close()
bind4 = "0.0.0.0"
}
Expand Down

0 comments on commit 9b0da38

Please sign in to comment.