summaryrefslogtreecommitdiff
path: root/vendor/github.com/opencontainers/runtime-spec/specs-go/version.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/opencontainers/runtime-spec/specs-go/version.go')
-rw-r--r--vendor/github.com/opencontainers/runtime-spec/specs-go/version.go18
1 files changed, 0 insertions, 18 deletions
diff --git a/vendor/github.com/opencontainers/runtime-spec/specs-go/version.go b/vendor/github.com/opencontainers/runtime-spec/specs-go/version.go
deleted file mode 100644
index bda7e1ca9..000000000
--- a/vendor/github.com/opencontainers/runtime-spec/specs-go/version.go
+++ /dev/null
@@ -1,18 +0,0 @@
-package specs
-
-import "fmt"
-
-const (
- // VersionMajor is for an API incompatible changes
- VersionMajor = 1
- // VersionMinor is for functionality in a backwards-compatible manner
- VersionMinor = 0
- // VersionPatch is for backwards-compatible bug fixes
- VersionPatch = 2
-
- // VersionDev indicates development branch. Releases will be empty string.
- VersionDev = ""
-)
-
-// Version is the specification version that the package types support.
-var Version = fmt.Sprintf("%d.%d.%d%s", VersionMajor, VersionMinor, VersionPatch, VersionDev)