package dns

import 

// Version is current version of this library.
var Version = v{1, 1, 66}

// v holds the version of this library.
type v struct {
	Major, Minor, Patch int
}

func ( v) () string {
	return fmt.Sprintf("%d.%d.%d", .Major, .Minor, .Patch)
}