1package dns
2
3import "fmt"
4
5// Version is current version of this library.
6var Version = v{1, 1, 40}
7
8// v holds the version of this library.
9type v struct {
10	Major, Minor, Patch int
11}
12
13func (v v) String() string {
14	return fmt.Sprintf("%d.%d.%d", v.Major, v.Minor, v.Patch)
15}
16