1package dns
2
3import "fmt"
4
5// Version is current version of this library.
6var Version = V{1, 0, 4}
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