Release / build (amd64, freebsd) (push) Successful in 1m0s
Release / build (amd64, linux) (push) Successful in 1m1s
Release / build (arm64, freebsd) (push) Successful in 57s
Release / build (arm64, linux) (push) Successful in 58s
Release / build (loong64, linux) (push) Successful in 1m3s
Release / build (riscv64, freebsd) (push) Successful in 56s
Release / build (riscv64, linux) (push) Successful in 1m0s
Release / release (push) Failing after 20s
14 lines
399 B
Go
14 lines
399 B
Go
// Copyright (c) 2026 Petr Balvín <opensource@petrbalvin.org> (https://petrbalvin.org)
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
//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.
|
|
var Version = "1.1.0"
|