mirror of
https://github.com/openshift/source-to-image.git
synced 2026-02-05 12:44:54 +01:00
Changes: - Update go version to 1.25.3 - Update dependencies to mitigate CVEs - Fix tests to work with broken APIs after update - Remove/Replace deprecated methods - Update Git command to ignore pre-commit hooks - Update Go builder image to 1.25 in docker files and Openshift CI - Update tekton pipeline task bundles to have updated golang image Signed-off-by: Sayan Biswas <sayan-biswas@live.com>
19 lines
535 B
Go
19 lines
535 B
Go
package version
|
|
|
|
import "fmt"
|
|
|
|
const (
|
|
// VersionMajor is for an API incompatible changes
|
|
VersionMajor = 5
|
|
// VersionMinor is for functionality in a backwards-compatible manner
|
|
VersionMinor = 36
|
|
// VersionPatch is for backwards-compatible bug fixes
|
|
VersionPatch = 2
|
|
|
|
// VersionDev indicates development branch. Releases will be empty string.
|
|
VersionDev = ""
|
|
)
|
|
|
|
// Version is the specification version that the package types support.
|
|
var Version = fmt.Sprintf("%d.%d.%d%s", VersionMajor, VersionMinor, VersionPatch, VersionDev)
|