From 36852b0d072a4b5da675300a9e73bc4b0853f5c6 Mon Sep 17 00:00:00 2001 From: utam0k Date: Fri, 5 Jan 2024 21:50:39 +0900 Subject: [PATCH 1/2] version: release v1.2.0 Signed-off-by: utam0k --- ChangeLog | 21 +++++++++++++++++++++ specs-go/version.go | 4 ++-- 2 files changed, 23 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index c93790817..ef1b2dad6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,26 @@ OpenContainers Specifications +Changes with v1.2.0: + + Additions: + + * config: add idmap and ridmap mount options (#1222) + * config.md: allow empty mappings for [r]idmap (#1224) + * features-linux: Expose idmap information (#1219) + * mount: Allow relative mount destinations on Linux (#1225) + * features: add potentiallyUnsafeConfigAnnotations (#1205) + * config: add support for org.opencontainers.image annotations #1197 + + Minor fixes: + + * config: improve bind mount and propagation doc (#1228) + + Documentation, CI & Governance: + + * fix link to hooks in features (#1226) + * specs-go: add missing deprecation comment for Hooks.Prestart (#1232) + * specs-go: mark LinuxMemory.Kernel as deprecated ()#1233) + Changes with v1.1.0: Breaking changes (but rather conforms to the existing runc implementation): diff --git a/specs-go/version.go b/specs-go/version.go index 35358c2c5..503971e05 100644 --- a/specs-go/version.go +++ b/specs-go/version.go @@ -6,12 +6,12 @@ const ( // VersionMajor is for an API incompatible changes VersionMajor = 1 // VersionMinor is for functionality in a backwards-compatible manner - VersionMinor = 1 + VersionMinor = 2 // VersionPatch is for backwards-compatible bug fixes 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 65cd1f8dc95a60375cb8cd874ad76a4f0c804d54 Mon Sep 17 00:00:00 2001 From: utam0k Date: Fri, 26 Jan 2024 21:55:46 +0900 Subject: [PATCH 2/2] Back to +dev Signed-off-by: utam0k --- 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 503971e05..f6c15f6c3 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.