Browse code

Bump opencontainers/image-spec to v1.0.0

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>

Sebastiaan van Stijn authored on 2017/11/08 00:16:09
Showing 3 changed files
... ...
@@ -67,7 +67,7 @@ google.golang.org/grpc v1.3.0
67 67
 # When updating, also update RUNC_COMMIT in hack/dockerfile/binaries-commits accordingly
68 68
 github.com/opencontainers/runc 0351df1c5a66838d0c392b4ac4cf9450de844e2d
69 69
 github.com/opencontainers/runtime-spec v1.0.0
70
-github.com/opencontainers/image-spec 372ad780f63454fbbbbcc7cf80e5b90245c13e13
70
+github.com/opencontainers/image-spec v1.0.0
71 71
 github.com/seccomp/libseccomp-golang 32f571b70023028bd57d9288c20efbcb237f3ce0
72 72
 
73 73
 # libcontainer deps (see src/github.com/opencontainers/runc/Godeps/Godeps.json)
... ...
@@ -37,7 +37,7 @@ type ImageConfig struct {
37 37
 	// Cmd defines the default arguments to the entrypoint of the container.
38 38
 	Cmd []string `json:"Cmd,omitempty"`
39 39
 
40
-	// Volumes is a set of directories which should be created as data volumes in a container running this image.
40
+	// Volumes is a set of directories describing where the process is likely write data specific to a container instance.
41 41
 	Volumes map[string]struct{} `json:"Volumes,omitempty"`
42 42
 
43 43
 	// WorkingDir sets the current working directory of the entrypoint process in the container.
... ...
@@ -25,7 +25,7 @@ const (
25 25
 	VersionPatch = 0
26 26
 
27 27
 	// VersionDev indicates development branch. Releases will be empty string.
28
-	VersionDev = "-rc6-dev"
28
+	VersionDev = ""
29 29
 )
30 30
 
31 31
 // Version is the specification version that the package types support.