aboutsummaryrefslogtreecommitdiff
path: root/vendor/github.com/miekg/pkcs11/release.go
blob: d8b99f147eac9f948255ad6590d4c2038a09e6ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//go:build release
// +build release

package pkcs11

import "fmt"

// Release is current version of the pkcs11 library.
var Release = R{1, 1, 1}

// R holds the version of this library.
type R struct {
	Major, Minor, Patch int
}

func (r R) String() string {
	return fmt.Sprintf("%d.%d.%d", r.Major, r.Minor, r.Patch)
}