Hashicorp go-version: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
 
Line 19: Line 19:
     fmt.Printf("%s is less than %s", v1, v2)
     fmt.Printf("%s is less than %s", v1, v2)
}
}
</syntaxhighlight>
[[Semantic_Versioning#Normal_(Core)_Version|Core]] version:
<syntaxhighlight lang='go'>
v.Core()
</syntaxhighlight>
</syntaxhighlight>

Latest revision as of 18:26, 18 March 2024

External

Internal

Overview

Installation

go get github.com/hashicorp/go-version

Programming Model

v1, err := version.NewVersion("1.2")
v2, err := version.NewVersion("1.5+metadata")

// Comparison example. There is also GreaterThan, Equal, and just
// a simple Compare that returns an int allowing easy >=, <=, etc.
if v1.LessThan(v2) {
    fmt.Printf("%s is less than %s", v1, v2)
}

Core version:

v.Core()