// +build releasepackagepkcs11import"fmt"// Release is current version of the pkcs11 library.varRelease=R{1,0,3}// R holds the version of this library.typeRstruct{Major,Minor,Patchint}func(rR)String()string{returnfmt.Sprintf("%d.%d.%d",r.Major,r.Minor,r.Patch)}