2024-06-01 17:26:16 +02:00
|
|
|
package obioptions
|
|
|
|
|
|
2026-02-05 17:38:47 +01:00
|
|
|
// Version is automatically updated by the Makefile from version.txt
|
|
|
|
|
// The patch number (third digit) is incremented on each push to the repository
|
2024-06-01 17:26:16 +02:00
|
|
|
|
2026-03-13 19:30:37 +01:00
|
|
|
var _Version = "Release 4.4.26"
|
2024-06-01 17:26:16 +02:00
|
|
|
|
|
|
|
|
// Version returns the version of the obitools package.
|
|
|
|
|
//
|
|
|
|
|
// No parameters.
|
|
|
|
|
// Returns a string representing the version of the obitools package.
|
|
|
|
|
func VersionString() string {
|
2026-02-05 17:38:47 +01:00
|
|
|
return _Version
|
2024-06-01 17:26:16 +02:00
|
|
|
}
|