From f6c393da9e0b179d7220b2ba347b0e21f059b37e Mon Sep 17 00:00:00 2001 From: Akihiro Suda Date: Thu, 11 May 2023 11:41:22 +0900 Subject: [PATCH] features: graduate from experimental The type definition was merged into the OCI Runtime Spec v1.1.0-rc.2: https://github.com/opencontainers/runtime-spec/blob/v1.1.0-rc.2/features.md Signed-off-by: Akihiro Suda --- docs/experimental.md | 5 +---- features.go | 3 +-- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/docs/experimental.md b/docs/experimental.md index a68dd0680..a61cf60ed 100644 --- a/docs/experimental.md +++ b/docs/experimental.md @@ -1,11 +1,8 @@ # Experimental features -The following features are experimental and subject to change: - -- The `runc features` command (since runc v1.1.0) - The following features were experimental in the past: Feature | Experimental release | Graduation release ---------------------------------------- | -------------------- | ------------------ cgroup v2 | v1.0.0-rc91 | v1.0.0-rc93 +The `runc features` command | v1.1.0 | v1.2.0 diff --git a/features.go b/features.go index a01b4ae3e..d3ffda349 100644 --- a/features.go +++ b/features.go @@ -20,8 +20,7 @@ var featuresCommand = cli.Command{ ArgsUsage: "", Description: `Show the enabled features. The result is parsable as a JSON. - See https://pkg.go.dev/github.com/opencontainers/runc/types/features for the type definition. - The types are experimental and subject to change. + See https://github.com/opencontainers/runtime-spec/blob/main/features.md for the type definition. `, Action: func(context *cli.Context) error { if err := checkArgs(context, 0, exactArgs); err != nil {