2017-12-13 08:06:22 +00:00
|
|
|
package dns
|
|
|
|
|
|
|
|
import "fmt"
|
|
|
|
|
|
|
|
// Version is current version of this library.
|
2020-04-23 10:17:08 +00:00
|
|
|
var Version = v{1, 1, 29}
|
2017-12-13 08:06:22 +00:00
|
|
|
|
2020-04-23 10:17:08 +00:00
|
|
|
// v holds the version of this library.
|
|
|
|
type v struct {
|
2017-12-13 08:06:22 +00:00
|
|
|
Major, Minor, Patch int
|
|
|
|
}
|
|
|
|
|
2020-04-23 10:17:08 +00:00
|
|
|
func (v v) String() string {
|
2017-12-13 08:06:22 +00:00
|
|
|
return fmt.Sprintf("%d.%d.%d", v.Major, v.Minor, v.Patch)
|
|
|
|
}
|