Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: move version #3

Merged
merged 1 commit into from
Jan 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion archspec/compspec.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"compatibilities": {
"version": "0.0.0",
"io.archspec.cpu": {
"version": "0.0.0",
"annotations": [
"family",
"model",
Expand Down
14 changes: 7 additions & 7 deletions definition-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@
"properties": {
"compatibilities": {
"type": "object",
"properties": {
"version": {
"$comment": "Version of the metadata namespace",
"type": "string"
},
"patternProperties": {
"([\\w]*)": {
"patternProperties": {
"([\\w]*)": {
"properties": {
"version": {
"$comment": "Version of the metadata namespace",
"type": "string"
},
"annotations": {
"$comment": "Acceptable keys for a given namespace.",
"type": "array",
Expand Down
14 changes: 7 additions & 7 deletions schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@
"properties": {
"compatibilities": {
"type": "object",
"properties": {
"version": {
"$comment": "Version of the metadata namespace",
"type": "string"
},
"patternProperties": {
"([\\w]*)": {
"patternProperties": {
"([\\w]*)": {
"properties": {
"version": {
"$comment": "Version of the metadata namespace",
"type": "string"
},
"annotations": {
"$comment": "Key value pairs for a given namespace.",
"type": "array",
Expand Down
6 changes: 5 additions & 1 deletion supercontainers/compspec.json
Original file line number Diff line number Diff line change
@@ -1,31 +1,35 @@
{
"compatibilities": {
"version": "0.0.0",
"org.supercontainers.mpi": {
"version": "0.0.0",
"annotations": [
"implementation",
"portability.optimization",
"porability.mode"
]
},
"org.supercontainers.hardware.gpu": {
"version": "0.0.0",
"annotations": [
"driver.version",
"cuda.version",
"architecture"
]
},
"org.supercontainers.communication": {
"version": "0.0.0",
"annotations": [
"framework"
]
},
"org.supercontainers.openmpi": {
"version": "0.0.0",
"annotations": [
"version"
]
},
"org.supercontainers.libfabric": {
"version": "0.0.0",
"annotations": [
"abi.version"
]
Expand Down