version.go 274 B

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