File: version.go

package info (click to toggle)
bingo 0.9.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 5,912 kB
  • sloc: sh: 258; makefile: 117
file content (16 lines) | stat: -rw-r--r-- 351 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright (c) Bartłomiej Płotka @bwplotka
// Licensed under the Apache License 2.0.

package version

import "github.com/Masterminds/semver"

// Version returns 'bingo' version.
const Version = "v0.9"

var (
	Go114 = semver.MustParse("1.14")
	Go116 = semver.MustParse("1.16")
	Go121 = semver.MustParse("1.21")
	Go125 = semver.MustParse("1.25")
)