Skip to content

Commit

Permalink
bumping claim format to 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
edcdavid committed Jan 10, 2024
1 parent 16fd5c9 commit 951d4ce
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion cmd/tnf/pkg/claim/claim.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
)

const (
supportedClaimFormatVersion = "v0.3.0"
supportedClaimFormatVersion = "v0.4.0"
)

const (
Expand Down
6 changes: 3 additions & 3 deletions cmd/tnf/pkg/claim/claim_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@ func TestIsClaimFormatVersionSupported(t *testing.T) {
},
{
claimFormatVersion: "v0.0.0",
expectedError: "claim format version v0.0.0 is not supported. Supported version is v0.3.0",
expectedError: "claim format version v0.0.0 is not supported. Supported version is v0.4.0",
},
{
claimFormatVersion: "v0.0.1",
expectedError: "claim format version v0.0.1 is not supported. Supported version is v0.3.0",
expectedError: "claim format version v0.0.1 is not supported. Supported version is v0.4.0",
},
{
claimFormatVersion: "v0.3.0",
claimFormatVersion: "v0.4.0",
expectedError: "",
},
}
Expand Down

0 comments on commit 951d4ce

Please sign in to comment.