From 524fc0e1b8ab0180e2fc9abd31837a0f4ed1fd6b Mon Sep 17 00:00:00 2001 From: Kirtana Ashok Date: Tue, 25 Feb 2025 13:25:52 -0800 Subject: [PATCH 1/2] Release v1.2.1 Signed-off-by: Kirtana Ashok --- ChangeLog | 29 +++++++++++++++++++++++++++++ specs-go/version.go | 4 ++-- 2 files changed, 31 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index ef1b2dad6..bf2807f3f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,34 @@ OpenContainers Specifications +Changes with v1.2.1: + + Additions: + + * zos updates (#1273) + * Add support for windows CPU affinity (#1258) + * specs-go: sync SCMP_ARCH_* constants with libseccomp main (#1229) + * Add CPU affinity to executed processes (#1253, #1261) + * config-linux: describe the format of cpus and mems (#1253) + + Minor fixes: + + * Fix description of errnoRet in Seccomp (#1277) + * config-linux: update for libseccomp v2.6.0 (#1276) + * Correct `prestart` hook description in summary (#1275) + + Documentation, CI & Governance: + + * ci: Add a github actions workflow for lint (#1257) + * update http links to https (#1269) + * doc: fix the invalid hyperlink naming-a-volume (#1268) + * ci: remove redundunt actions (#1256) + * chore: format JSON file `make -C schema fmt` (#1255) + * CODEOWNERS: remove vbatts (#1248) + * MAINTAINERS: move vbatts to EMERITUS (#1248) + * Update golangci-lint to v1.56.1 in CI (#1245) + * Add Go v1.21 and v1.22 to GitHub Actions CI matrix (#1245) + * Update GitHub Actions packages to resolve warnings in CI (#1244) + Changes with v1.2.0: Additions: diff --git a/specs-go/version.go b/specs-go/version.go index f6c15f6c3..23234a9c5 100644 --- a/specs-go/version.go +++ b/specs-go/version.go @@ -8,10 +8,10 @@ const ( // VersionMinor is for functionality in a backwards-compatible manner VersionMinor = 2 // VersionPatch is for backwards-compatible bug fixes - VersionPatch = 0 + VersionPatch = 1 // VersionDev indicates development branch. Releases will be empty string. - VersionDev = "+dev" + VersionDev = "" ) // Version is the specification version that the package types support. From 95a651f2cceedc8195bb267edd2fec8b9e4145d7 Mon Sep 17 00:00:00 2001 From: Kirtana Ashok Date: Tue, 25 Feb 2025 13:40:38 -0800 Subject: [PATCH 2/2] Add back +dev Signed-off-by: Kirtana Ashok --- 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 23234a9c5..b0a00466b 100644 --- a/specs-go/version.go +++ b/specs-go/version.go @@ -11,7 +11,7 @@ const ( VersionPatch = 1 // VersionDev indicates development branch. Releases will be empty string. - VersionDev = "" + VersionDev = "+dev" ) // Version is the specification version that the package types support.