Skip to content

Commit ef65f73

Browse files
committed
*: Add "Initiative" to OCI Runtime Specification
Catching up with e641611 (README: tweak title, 2016-09-16, #571). Signed-off-by: W. Trevor King <[email protected]>
1 parent 96de01b commit ef65f73

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

config.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ For all platform-specific configuration values, the scope defined below in the [
1414

1515
## <a name="configSpecificationVersion" />Specification version
1616

17-
* **`ociVersion`** (string, REQUIRED) MUST be in [SemVer v2.0.0][semver-v2.0.0] format and specifies the version of the Open Container Runtime Specification with which the bundle complies.
18-
The Open Container Runtime Specification follows semantic versioning and retains forward and backward compatibility within major versions.
17+
* **`ociVersion`** (string, REQUIRED) MUST be in [SemVer v2.0.0][semver-v2.0.0] format and specifies the version of the Open Container Initiative Runtime Specification with which the bundle complies.
18+
The Open Container Initiative Runtime Specification follows semantic versioning and retains forward and backward compatibility within major versions.
1919
For example, if a configuration is compliant with version 1.1 of this specification, it is compatible with all runtimes that support any 1.1 or later release of this specification, but is not compatible with a runtime that supports 1.0 and not 1.1.
2020

2121
### Example

schema/config-schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"description": "Open Container Runtime Specification Container Configuration Schema",
2+
"description": "Open Container Initiative Runtime Specification Container Configuration Schema",
33
"$schema": "http://json-schema.org/draft-04/schema#",
44
"id": "https://opencontainers.org/schema/bundle",
55
"type": "object",

schema/defs.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"description": "Definitions used throughout the Open Container Runtime Specification",
2+
"description": "Definitions used throughout the Open Container Initiative Runtime Specification",
33
"definitions": {
44
"int8": {
55
"type": "integer",
@@ -145,7 +145,7 @@
145145
]
146146
},
147147
"ociVersion": {
148-
"description": "The version of Open Container Runtime Specification that the document complies with",
148+
"description": "The version of Open Container Initiative Runtime Specification that the document complies with",
149149
"type": "string"
150150
},
151151
"annotations": {

specs-go/config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import "os"
44

55
// Spec is the base configuration for the container.
66
type Spec struct {
7-
// Version of the Open Container Runtime Specification with which the bundle complies.
7+
// Version of the Open Container Initiative Runtime Specification with which the bundle complies.
88
Version string `json:"ociVersion"`
99
// Process configures the container process.
1010
Process *Process `json:"process,omitempty"`

0 commit comments

Comments
 (0)