kubernetes/vendor/github.com/miekg/dns/version.go
Dan Lorenc f273212c0b Update github.com/miekg/dns to pick up fix for CVE-2019-19794.
I noticed this was out of date using 'snyk test' on the main repository.
2020-12-19 15:52:09 -06:00

16 lines
275 B
Go

package dns
import "fmt"
// Version is current version of this library.
var Version = v{1, 1, 35}
// v holds the version of this library.
type v struct {
Major, Minor, Patch int
}
func (v v) String() string {
return fmt.Sprintf("%d.%d.%d", v.Major, v.Minor, v.Patch)
}