From eac58a47d499203c316afe8b6c08b291f4390abb Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Wed, 12 Jul 2017 15:24:15 -0700 Subject: [PATCH 1/3] ChangeLog: Document changes since v1.0.0-rc6 Through 96de01bb (Merge pull request #897 from crosbymichael/pids, 2017-07-12). Signed-off-by: W. Trevor King --- ChangeLog | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/ChangeLog b/ChangeLog index 5536bcd56..2ffc952f0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,24 @@ OpenContainers Specifications +Changes with v1.0.0: + + Breaking changes: + + * config: Shift disableOOMKiller from linux.resources to + linux.resources.memory (#896) + + Decreased restrictions: + + * runtime: Make the state JSON's pid optional on non-Linux platforms + (#897) + + Minor fixes and documentation: + + * schema/defs-linux: Require Syscall.action (#885) + * specs-go/config: Fix 'omiempty' -> 'omitempty' typo for + LinuxSeccompArg.ValueTwo (#884) + * ROAMAP: remove the pre-v1.0.0 roadmap (#890) + Changes with v1.0.0-rc6: Breaking changes: From 02137cd4e50b37a01665e1731fcd4ac2d2178230 Mon Sep 17 00:00:00 2001 From: Vincent Batts Date: Wed, 12 Jul 2017 10:33:56 -0400 Subject: [PATCH 2/3] version: release v1.0.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 57594b5cb..926ce6650 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 = "-rc6-dev" + VersionDev = "" ) // Version is the specification version that the package types support. From 84ba019aec4cefa2c945d74fe7b3f894ebf70994 Mon Sep 17 00:00:00 2001 From: Vincent Batts Date: Wed, 12 Jul 2017 10:34:25 -0400 Subject: [PATCH 3/3] version: bump master back to -dev 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 926ce6650..d1388dae2 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 = "" + VersionDev = "-dev" ) // Version is the specification version that the package types support.