File: version.go

package info (click to toggle)
browserpass 3.7.2-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 4,836 kB
  • sloc: javascript: 80,027; makefile: 544
file content (15 lines) | stat: -rw-r--r-- 262 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package version

import "fmt"

const major = 3
const minor = 0
const patch = 7

// Code version as integer
const Code = major*1000000 + minor*1000 + patch

// String version as string
func String() string {
	return fmt.Sprintf("%d.%d.%d", major, minor, patch)
}