I would like to test if a VersionNumber
is 0.4.x or less.
v"0.4.1" <= v"0.4"
returns false
Is
x < v"0.5.0-DEV"
the best way to do this, (and would it be guaranteed to work)?
I would like to test if a VersionNumber
is 0.4.x or less.
v"0.4.1" <= v"0.4"
returns false
Is
x < v"0.5.0-DEV"
the best way to do this, (and would it be guaranteed to work)?
version < v"0.5-"