summaryrefslogtreecommitdiff
path: root/vendor/github.com/miekg/dns/version.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/miekg/dns/version.go')
-rw-r--r--vendor/github.com/miekg/dns/version.go15
1 files changed, 0 insertions, 15 deletions
diff --git a/vendor/github.com/miekg/dns/version.go b/vendor/github.com/miekg/dns/version.go
deleted file mode 100644
index e290e3dff..000000000
--- a/vendor/github.com/miekg/dns/version.go
+++ /dev/null
@@ -1,15 +0,0 @@
-package dns
-
-import "fmt"
-
-// Version is current version of this library.
-var Version = v{1, 1, 63}
-
-// v holds the version of this library.
-type v struct {
- Major, Minor, Patch int
-}
-
-func (v v) String() string {
- return fmt.Sprintf("%d.%d.%d", v.Major, v.Minor, v.Patch)
-}