mirror of
https://github.com/containers/skopeo.git
synced 2025-09-26 04:35:14 +00:00
Bumps [github.com/containers/ocicrypt](https://github.com/containers/ocicrypt) from 1.1.2 to 1.1.3. - [Release notes](https://github.com/containers/ocicrypt/releases) - [Commits](https://github.com/containers/ocicrypt/compare/v1.1.2...v1.1.3) --- updated-dependencies: - dependency-name: github.com/containers/ocicrypt dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
19 lines
321 B
Go
19 lines
321 B
Go
//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)
|
|
}
|