From 009e9699d8493538f3d56600b063b8f0d74b600e Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Tue, 6 Sep 2016 21:10:49 -0700 Subject: [PATCH 1/3] ChangeLog: Document changes since v1.0.0-rc1 Through c678086 (Merge pull request #553 from RobDolinMS/patch-11, 2016-09-06). Signed-off-by: W. Trevor King --- ChangeLog | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) diff --git a/ChangeLog b/ChangeLog index 157b39d31..8dbfd17f6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,42 @@ OpenContainers Specifications +Changes with v1.0.0-rc2: + Additions: + + * config-linux: Add new architectures from libseccomp 2.3.0 (#505) + * schema: Add JSON Schema for state JSON and move schema.json to + config-schema.json and similar (#481, #498, #519) + + Minor fixes and documentation: + + * Add compliance language for platforms and architectures (#527) + * Remove "unconditionally compliant" language (#553) + * bundle: Remove distribution references (#487) + * runtime: Fix sub-bullet indentation (#495) + * config: Replace Arch fstab reference with mount(8) (#443) + * config: Synchronize comments between Markdown and Go (#525) + * config: Drop v0.x compatibility statement (#488) + * config-linux: RFC 2119 wording for cgroupsPath (#493) + * config-linux: Make linux.devices and linux.resources.devices + optional (#526) + * config-linux: Extend no-tweak requirement to runtime namespaces (#538) + * schema: Add hook.timeout (#544) + * schema: Add missing '"type": "object"' (#528) + * schema: Run 'make fmt' and remove duplicates (#546, #551) + * schema/config: Make 'hostname' optional (#491) + * schema/config-linux: Add linux.resources.devices (#550) + * specs-go/config: Add Solaris tags to User properties (#496) + * specs-go/config: Make Linux and Solaris omitempty again (#502) + * specs-go/config: Make KernelTCP and ClassID omitempty (#531) + * specs-go/config: Fix "specified" typo for ApparmorProfile (#503) + * Makefile: Remove code-of-conduct.md and version.md when clean (#541) + * implementations: Mention cc-oci-runtime (#539) + * Use filesystem instead of file system (#529) + * .pullapprove: Add DCO check via PullApprove + * GOVERNANCE: Add governance and release process docs (#521) + * README: Change meeting time from 10am to 2pm Pacific (#524) + * README: Update conference-call phone number (#512, #515) + Changes with v1.0.0-rc1: Breaking changes: From 7dab1a245d3e13d0ad03b77409d0bf7e00a6ada4 Mon Sep 17 00:00:00 2001 From: Vincent Batts Date: Wed, 7 Sep 2016 22:24:10 -0400 Subject: [PATCH 2/3] version: 1.0.0-rc2 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 2db1b8018..a80270cf4 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 = "-rc1-dev" + VersionDev = "-rc2" ) // Version is the specification version that the package types support. From 769176bbf88bdefaa83e89d5b1bb6e50a362a322 Mon Sep 17 00:00:00 2001 From: Vincent Batts Date: Thu, 8 Sep 2016 09:55:59 -0400 Subject: [PATCH 3/3] version: bump master 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 a80270cf4..8b5ec8908 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 = "-rc2" + VersionDev = "-rc2-dev" ) // Version is the specification version that the package types support.