We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b6c180c + 2d46815 commit 90e6161Copy full SHA for 90e6161
main.go
@@ -54,7 +54,8 @@ func main() {
54
}
55
56
if opts.Version {
57
- fmt.Println(Version)
+ fmt.Println("Version:", Version)
58
+ fmt.Println("SupportedFirecrackerVersion:", SupportedFirecrackerVersion)
59
os.Exit(0)
60
61
version.go
@@ -16,3 +16,6 @@ package main
16
// Version represents the major, minor, and patch version of
17
// FireCTL.
18
const Version = "0.1.0"
19
+
20
+// SupportedFirecrackerVersion is the firecracker version that the sdk
21
+const SupportedFirecrackerVersion = "0.19.0"
0 commit comments