Quite a lot of dependency updates

This commit is contained in:
Frank Denis 2020-03-13 17:58:44 +01:00
parent 19647e03a6
commit 26ebb55c8c
61 changed files with 13152 additions and 90698 deletions

View file

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