From 8e77f58b8bd6a3b8bf159a46b9d7e541c1cedb4b Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Mon, 11 Apr 2016 21:51:33 -0700 Subject: [PATCH 1/3] ChangeLog: Document changes since v0.4.0 Through 6734c7a (Merge pull request #370 from vbatts/json_schema_and_examples, 2016-04-11). The only unlisted changes to master were a brief run with ffjson (#343, #351), but that was pulled out due to gccgo issues in #363. Signed-off-by: W. Trevor King --- ChangeLog | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/ChangeLog b/ChangeLog index 1c5bf912..958a6acd 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,36 @@ OpenContainers Specifications +Changes with v0.5.0: + Breaking changes: + + * specs-go: Renamed the repository from opencontainers/specs to + opencontainers/runtime-spec, #365 + + Additions: + + * config: Add 'timeout' for hooks, #346 + * config-linux: Add 'maskedPaths' and 'readonlyPaths', #364 + + Minor fixes and documentation: + + * JSON Schema bug-fixes and improved examples, #370 + * README: Define "unconditionally compliant", #374 + * config: Make Markdown canonical, #342 + * config: Explicitly list mapping from symbolic names to UID/GIDs as + out-of-scope, #347 + * config-linux: Require the runtime mount namespace for namespace + 'path' values, #275 + * config-linux: Reword kernelTCP docs, #377 + * specs-go: Add omitempty to 'Device' and 'Namespace', #340 + * .travis.yml: Use built-in 'go vet' and current 'go lint', dropping + Go < 1.5, #372, #352 + * implementations: Expand ocitools scope to include testing, #328 + * style: Move one-sentence-per-line rule from the README, #369 + * style: Remove dangling parenthesis, #359 + * README: Add a link to the IRC logs, #358 + * Fix "manadate", "exmaple", "paramters", and "preferrably" typos, + #353, #354 + Changes with v0.4.0: Breaking changes: From 78e6667ae2d67aad100b28ee9580b41b7a24e667 Mon Sep 17 00:00:00 2001 From: Vincent Batts Date: Mon, 11 Apr 2016 23:42:00 -0400 Subject: [PATCH 2/3] version: v0.5.0 Signed-off-by: Vincent Batts --- specs-go/version.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/specs-go/version.go b/specs-go/version.go index 27f45e08..67f1a9d9 100644 --- a/specs-go/version.go +++ b/specs-go/version.go @@ -11,7 +11,7 @@ const ( VersionPatch = 0 // VersionDev indicates development branch. Releases will be empty string. - VersionDev = "-dev" + VersionDev = "" ) // Version is the specification version that the package types support. From 54fba081a4706168cb8dddb22c237d7d77192997 Mon Sep 17 00:00:00 2001 From: Vincent Batts Date: Mon, 11 Apr 2016 23:42:53 -0400 Subject: [PATCH 3/3] version: bump v0.6.0-dev Signed-off-by: Vincent Batts --- specs-go/version.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/specs-go/version.go b/specs-go/version.go index 67f1a9d9..371289ae 100644 --- a/specs-go/version.go +++ b/specs-go/version.go @@ -6,12 +6,12 @@ const ( // VersionMajor is for an API incompatible changes VersionMajor = 0 // VersionMinor is for functionality in a backwards-compatible manner - VersionMinor = 5 + VersionMinor = 6 // VersionPatch is for backwards-compatible bug fixes VersionPatch = 0 // VersionDev indicates development branch. Releases will be empty string. - VersionDev = "" + VersionDev = "-dev" ) // Version is the specification version that the package types support.