File: doc.go

package info (click to toggle)
golang-github-tideland-golib 4.24.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,144 kB
  • sloc: makefile: 4
file content (19 lines) | stat: -rw-r--r-- 669 bytes parent folder | download | duplicates (2)
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