Data.Version (original) (raw)
Contents
Description
A general library for representation and manipulation of versions.
Versioning schemes are many and varied, so the version representation provided by this library is intended to be a compromise between complete generality, where almost no common functionality could reasonably be provided, and fixing a particular versioning scheme, which would probably be too restrictive.
So the approach taken here is to provide a representation which subsumes many of the versioning schemes commonly in use, and we provide implementations of [Eq](Data-Eq.html#t:Eq "Data.Eq")
, [Ord](Data-Ord.html#t:Ord "Data.Ord")
and conversion to/from [String](Data-String.html#t:String "Data.String")
which will be appropriate for some applications, but not all.
Synopsis
- data Version = Version {
- versionBranch :: [Int]
- versionTags :: [String]
}
- showVersion :: Version -> String
- parseVersion :: ReadP Version
- makeVersion :: [Int] -> Version
A [Version](Data-Version.html#t:Version "Data.Version")
represents the version of a software entity.
An instance of [Eq](Data-Eq.html#t:Eq "Data.Eq")
is provided, which implements exact equality modulo reordering of the tags in the [versionTags](Data-Version.html#v:versionTags "Data.Version")
field.
An instance of [Ord](Data-Ord.html#t:Ord "Data.Ord")
is also provided, which gives lexicographic ordering on the [versionBranch](Data-Version.html#v:versionBranch "Data.Version")
fields (i.e. 2.1 > 2.0, 1.2.3 > 1.2.2, etc.). This is expected to be sufficient for many uses, but note that you may need to use a more specific ordering for your versioning scheme. For example, some versioning schemes may include pre-releases which have tags "pre1"
, "pre2"
, and so on, and these would need to be taken into account when determining ordering. In some cases, date ordering may be more appropriate, so the application would have to look for date
tags in the [versionTags](Data-Version.html#v:versionTags "Data.Version")
field and compare those. The bottom line is, don't always assume that [compare](Data-Ord.html#v:compare "Data.Ord")
and other [Ord](Data-Ord.html#t:Ord "Data.Ord")
operations are the right thing for every [Version](Data-Version.html#t:Version "Data.Version")
.
Similarly, concrete representations of versions may differ. One possible concrete representation is provided (see [showVersion](Data-Version.html#v:showVersion "Data.Version")
and[parseVersion](Data-Version.html#v:parseVersion "Data.Version")
), but depending on the application a different concrete representation may be more appropriate.
Constructors
| Version | | | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | | FieldsversionBranch :: [Int]The numeric branch for this version. This reflects the fact that most software versions are tree-structured; there is a main trunk which is tagged with versions at various points (1,2,3...), and the first branch off the trunk after version 3 is 3.1, the second branch off the trunk after version 3 is 3.2, and so on. The tree can be branched arbitrarily, just by adding more digits.We represent the branch as a list of Int, so version 3.2.1 becomes [3,2,1]. Lexicographic ordering (i.e. the default instance of Ord for [Int]) gives the natural ordering of branches.versionTags :: [String]Deprecated: See GHC ticket #2496A version can be tagged with an arbitrary list of strings. The interpretation of the list of tags is entirely dependent on the entity that this version applies to. | |