mirror of
https://github.com/henrygd/beszel.git
synced 2026-09-18 05:54:17 +00:00
22 lines
735 B
Go
22 lines
735 B
Go
// Package beszel provides core application constants and version information
|
|
// which are used throughout the application.
|
|
package beszel
|
|
|
|
import "github.com/blang/semver"
|
|
|
|
const (
|
|
// Version is the current version of the application.
|
|
Version = "0.19.0"
|
|
// AppName is the name of the application.
|
|
AppName = "beszel"
|
|
)
|
|
|
|
// MinVersionCbor is the minimum supported version for CBOR compatibility.
|
|
var MinVersionCbor = semver.MustParse("0.12.0")
|
|
|
|
// MinVersionAgentResponse is the minimum supported version for AgentResponse compatibility.
|
|
var MinVersionAgentResponse = semver.MustParse("0.13.0")
|
|
|
|
// MinVersionZfsData is the minimum agent version that supports ZFS detail requests.
|
|
var MinVersionZfsData = semver.MustParse("0.18.9")
|