Fix merge conflict
Signed-off-by: Jakub Sztandera <kubuxu@protocol.ai>
This commit is contained in:
parent
17d0fe96a4
commit
5c64859a9b
@ -25,28 +25,13 @@ func (ve Version) String() string {
|
|||||||
vmj, vmi, vp := ve.Ints()
|
vmj, vmi, vp := ve.Ints()
|
||||||
return fmt.Sprintf("%d.%d.%d", vmj, vmi, vp)
|
return fmt.Sprintf("%d.%d.%d", vmj, vmi, vp)
|
||||||
}
|
}
|
||||||
>>>>>>> 4041819c... Refactor versions
|
|
||||||
|
|
||||||
func (ve Version) EqMajorMinor(v2 Version) bool {
|
func (ve Version) EqMajorMinor(v2 Version) bool {
|
||||||
return ve&minorMask == v2&minorMask
|
return ve&minorMask == v2&minorMask
|
||||||
}
|
}
|
||||||
|
|
||||||
// APIVersion is a hex semver version of the rpc api exposed
|
// APIVersion is a semver version of the rpc api exposed
|
||||||
//
|
var APIVersion Version = newVer(0, 1, 2)
|
||||||
// M M P
|
|
||||||
// A I A
|
|
||||||
// J N T
|
|
||||||
// O O C
|
|
||||||
// R R H
|
|
||||||
// |\vv/|
|
|
||||||
// vv vv
|
|
||||||
<<<<<<< HEAD
|
|
||||||
const APIVersion = 0x000102
|
|
||||||
||||||| parent of 4041819c... Refactor versions
|
|
||||||
const APIVersion = 0x000101
|
|
||||||
=======
|
|
||||||
var APIVersion Version = newVer(0, 1, 1)
|
|
||||||
>>>>>>> 4041819c... Refactor versions
|
|
||||||
|
|
||||||
const (
|
const (
|
||||||
majorMask = 0xff0000
|
majorMask = 0xff0000
|
||||||
|
Loading…
Reference in New Issue
Block a user