From 54f948c967dce262db0826c97b46df8526e74025 Mon Sep 17 00:00:00 2001 From: Akihiro Suda Date: Thu, 6 Apr 2023 09:05:40 +0900 Subject: [PATCH 1/3] ChangeLog: Document changes since v1.1.0-rc.1 Through 2ee82c50fde339cd3bba89d441f52e0766c65e10 (2023-04-05) Signed-off-by: Akihiro Suda --- ChangeLog | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/ChangeLog b/ChangeLog index b37e17498..69271bb06 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,24 @@ OpenContainers Specifications +Changes with v1.1.0-rc.2: + + Additions: + + * config-linux: add support for rsvd hugetlb cgroup (#1116) + * features: add `features.md` to formalize the `runc features` JSON (#1130) + * config-linux: add support for time namespace (#1151) + + Minor fixes and documentation: + + * config-linux: clarify where device nodes can be created (#1148) + * runtime: remove `When serialized in JSON, the format MUST adhere to the + following pattern` (#1178) + * Update CI to Go 1.20 (#1179) + * config: clarify Linux mount options (#1181) + * config-linux: fix url error (#1184) + * schema: fix schema for timeOffsets (#1193) + * schema: remove duplicate keys (#1195) + Changes with v1.1.0-rc.1: Breaking changes (but rather conforms to the existing runc implementation): From a5b4da44adbd2d225696e5e52b5bd3b004e179cd Mon Sep 17 00:00:00 2001 From: Akihiro Suda Date: Thu, 6 Apr 2023 09:05:53 +0900 Subject: [PATCH 2/3] version: release v1.1.0-rc.2 Signed-off-by: Akihiro Suda --- 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 765d7b532..1b81f3c9d 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 = "-rc.1-dev" + VersionDev = "-rc.2" ) // Version is the specification version that the package types support. From 4ee185a47ad5caf0ef82d45e78ddfe6587687ad5 Mon Sep 17 00:00:00 2001 From: Akihiro Suda Date: Thu, 6 Apr 2023 09:05:57 +0900 Subject: [PATCH 3/3] version: v1.1.0-rc.2-dev Signed-off-by: Akihiro Suda --- 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 1b81f3c9d..cbc7b4a47 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 = "-rc.2" + VersionDev = "-rc.2-dev" ) // Version is the specification version that the package types support.