From d8be1e33bcb5be860fef3b19c46bc86eab129d44 Mon Sep 17 00:00:00 2001 From: Akihiro Suda Date: Mon, 22 May 2023 23:00:10 +0900 Subject: [PATCH 1/3] ChangeLog: Document changes since v1.1.0-rc.2 Through 720792f25ae6e9ee6b1332db698f37659e69ce8d (2023-05-22) Signed-off-by: Akihiro Suda --- ChangeLog | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/ChangeLog b/ChangeLog index 69271bb06..88dca5f6a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,23 @@ OpenContainers Specifications +Changes with v1.1.0-rc.3: + + Additions: + + * config: add scheduler entity (#1188) + * config: Add I/O Priority Configuration for process group in Linux Containers (#1191) + + Minor fixes and documentation: + + * config-linux: clarify I/O throttling differences between cgroup v1 and v2 (#1194) + * config-linux: chore: Update `ociVersion` in example (#1199) + * releases: use +dev as in-development suffix (#1198) + * MAINTAINERS: add Toru Komatsu (utam0k) (#1201) + * glossary: `s/features document/Features structure/g` (#1203) + * features: update Example (#1204) + * schema: fix definition for ioPriority (#1206) + * CODEOWNER: Add Toru Komatsu(@utam0k) to sync with MAINTAINERS (#1207) + Changes with v1.1.0-rc.2: Additions: From ae35e390d3b72b4baa2ff46ecd8d6d0064abf5ab Mon Sep 17 00:00:00 2001 From: Akihiro Suda Date: Mon, 22 May 2023 23:01:10 +0900 Subject: [PATCH 2/3] version: release v1.1.0-rc.3 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 cbc7b4a47..41933fb17 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-dev" + VersionDev = "-rc.3" ) // Version is the specification version that the package types support. From 8b4cadd2aecae2c17dfcecc9d4b390984626b904 Mon Sep 17 00:00:00 2001 From: Akihiro Suda Date: Mon, 22 May 2023 23:01:20 +0900 Subject: [PATCH 3/3] version: v1.1.0-rc.3+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 41933fb17..b5a534f8e 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.3" + VersionDev = "-rc.3+dev" ) // Version is the specification version that the package types support.