From feba1d7d984e28156992c0229a17f2e866a96d52 Mon Sep 17 00:00:00 2001 From: Ian Campbell Date: Thu, 20 Jul 2017 11:31:14 +0100 Subject: [PATCH] Bump to image-spec v1.0.0 and runtime-spec v1.0.0 No substantive changes. Signed-off-by: Ian Campbell --- vendor.conf | 4 ++-- .../opencontainers/image-spec/specs-go/v1/config.go | 2 +- .../github.com/opencontainers/image-spec/specs-go/version.go | 2 +- .../opencontainers/runtime-spec/specs-go/version.go | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/vendor.conf b/vendor.conf index 75c87beee..b60080b24 100644 --- a/vendor.conf +++ b/vendor.conf @@ -11,9 +11,9 @@ github.com/docker/notary v0.4.2 github.com/gogo/protobuf v0.4 github.com/gorilla/mux 4c1c3952b7d9d0a061a3fa7b36fd373ba0398ebc github.com/opencontainers/go-digest 21dfd564fd89c944783d00d069f33e3e7123c448 -github.com/opencontainers/image-spec 372ad780f63454fbbbbcc7cf80e5b90245c13e13 +github.com/opencontainers/image-spec v1.0.0 github.com/opencontainers/runc 429a5387123625040bacfbb60d96b1cbd02293ab -github.com/opencontainers/runtime-spec 96de01bbb42c7af89bff100e10a9f0fb62e75bfb +github.com/opencontainers/runtime-spec v1.0.0 github.com/pkg/errors v0.8.0 github.com/surma/gocpio fcb68777e7dc4ea43ffce871b552c0d073c17495 github.com/xeipuuv/gojsonpointer 6fe8760cad3569743d51ddbb243b26f8456742dc diff --git a/vendor/github.com/opencontainers/image-spec/specs-go/v1/config.go b/vendor/github.com/opencontainers/image-spec/specs-go/v1/config.go index 8475ff741..fe799bd69 100644 --- a/vendor/github.com/opencontainers/image-spec/specs-go/v1/config.go +++ b/vendor/github.com/opencontainers/image-spec/specs-go/v1/config.go @@ -37,7 +37,7 @@ type ImageConfig struct { // Cmd defines the default arguments to the entrypoint of the container. Cmd []string `json:"Cmd,omitempty"` - // Volumes is a set of directories which should be created as data volumes in a container running this image. + // Volumes is a set of directories describing where the process is likely write data specific to a container instance. Volumes map[string]struct{} `json:"Volumes,omitempty"` // WorkingDir sets the current working directory of the entrypoint process in the container. diff --git a/vendor/github.com/opencontainers/image-spec/specs-go/version.go b/vendor/github.com/opencontainers/image-spec/specs-go/version.go index f4cda6ed8..e3eee29b4 100644 --- a/vendor/github.com/opencontainers/image-spec/specs-go/version.go +++ b/vendor/github.com/opencontainers/image-spec/specs-go/version.go @@ -25,7 +25,7 @@ const ( VersionPatch = 0 // VersionDev indicates development branch. Releases will be empty string. - VersionDev = "-rc6-dev" + VersionDev = "" ) // Version is the specification version that the package types support. diff --git a/vendor/github.com/opencontainers/runtime-spec/specs-go/version.go b/vendor/github.com/opencontainers/runtime-spec/specs-go/version.go index 57594b5cb..926ce6650 100644 --- a/vendor/github.com/opencontainers/runtime-spec/specs-go/version.go +++ b/vendor/github.com/opencontainers/runtime-spec/specs-go/version.go @@ -11,7 +11,7 @@ const ( VersionPatch = 0 // VersionDev indicates development branch. Releases will be empty string. - VersionDev = "-rc6-dev" + VersionDev = "" ) // Version is the specification version that the package types support.