Skip to content

Commit 2de8d7e

Browse files
committed
Bump spec version to 0.4.0
Signed-off-by: Evan Lezar <[email protected]>
1 parent 0535808 commit 2de8d7e

File tree

5 files changed

+6
-4
lines changed

5 files changed

+6
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Additionally runtimes don't uniformly expose a plugin system (or even expose a p
2525
$ mkdir /etc/cdi
2626
$ cat > /etc/cdi/vendor.json <<EOF
2727
{
28-
"cdiVersion": "0.3.0",
28+
"cdiVersion": "0.4.0",
2929
"kind": "vendor.com/device",
3030
"devices": [
3131
{

SPEC.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
## Version
1010

11-
This is CDI **spec** version **0.3.0**.
11+
This is CDI **spec** version **0.4.0**.
1212

1313
#### Released versions
1414

@@ -17,6 +17,7 @@ Released versions of the spec are available as Git tags.
1717
| Tag | Spec Permalink | Change |
1818
| -----| -----------------| -------|
1919
| v0.3.0 | | Initial tagged release of Spec |
20+
| v0.4.0 | | Added `type` field to Mount specification |
2021

2122
## Overview
2223

pkg/cdi/spec.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ var (
3434
"0.1.0": {},
3535
"0.2.0": {},
3636
"0.3.0": {},
37+
"0.4.0": {},
3738
}
3839

3940
// Externally set CDI Spec validation function.

schema/testdata/good/spec-example.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"cdiVersion": "0.3.0",
2+
"cdiVersion": "0.4.0",
33
"kind": "vendor.com/device",
44
"devices": [
55
{

specs-go/config.go

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

55
// CurrentVersion is the current version of the Spec.
6-
const CurrentVersion = "0.3.0"
6+
const CurrentVersion = "0.4.0"
77

88
// Spec is the base configuration for CDI
99
type Spec struct {

0 commit comments

Comments
 (0)