1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
// Tideland Go Library - Version
//
// Copyright (C) 2014-2017 Frank Mueller / Tideland / Oldenburg / Germany
//
// All rights reserved. Use of this source code is governed
// by the new BSD license.
// Package version of the Tideland Go Library helps other packages to
// provide information about their current version and compare it
// to others. It follows the idea of semantic versioning (see
// http://semver.org/).
//
// Version instances can be created via New() with explicit passed
// field values or via Parse() and a passed sting. Beside accessing
// the individual fields two versions can be compared with Compare()
// and Less().
package version
// EOF
|