2026-07-26 20:46:50 +02:00
|
|
|
// Copyright (c) 2026 Petr Balvín <opensource@petrbalvin.org> (https://petrbalvin.org)
|
|
|
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
|
|
2026-06-20 20:48:09 +02:00
|
|
|
//go:build linux || freebsd
|
|
|
|
|
|
|
|
|
|
// Package version exposes the nuntius release identity.
|
|
|
|
|
package version
|
|
|
|
|
|
|
|
|
|
// Name is the program name reported by `--version` and in log lines.
|
|
|
|
|
const Name = "nuntius"
|
|
|
|
|
|
|
|
|
|
// Version is the nuntius release version. Follows SemVer.
|
2026-07-26 21:14:52 +02:00
|
|
|
var Version = "1.1.1"
|