| Safe Haskell | Safe |
|---|---|
| Language | Haskell2010 |
Salve
Description
This module defines types and functions for working with versions as defined by Semantic Versioning. It also provides types and functions for working with version constraints as described by npm.
- data Version
- data PreRelease
- data Build
- data Constraint
- parseVersion :: String -> Maybe Version
- parsePreRelease :: String -> Maybe PreRelease
- parseBuild :: String -> Maybe Build
- parseConstraint :: String -> Maybe Constraint
- unsafeParseVersion :: String -> Version
- unsafeParsePreRelease :: String -> PreRelease
- unsafeParseBuild :: String -> Build
- unsafeParseConstraint :: String -> Constraint
- renderVersion :: Version -> String
- renderPreRelease :: PreRelease -> String
- renderBuild :: Build -> String
- renderConstraint :: Constraint -> String
- isUnstable :: Version -> Bool
- isStable :: Version -> Bool
- bumpMajor :: Version -> Version
- bumpMinor :: Version -> Version
- bumpPatch :: Version -> Version
- satisfies :: Version -> Constraint -> Bool
- majorLens :: Functor f => (Word -> f Word) -> Version -> f Version
- minorLens :: Functor f => (Word -> f Word) -> Version -> f Version
- patchLens :: Functor f => (Word -> f Word) -> Version -> f Version
- preReleasesLens :: Functor f => ([PreRelease] -> f [PreRelease]) -> Version -> f Version
- buildsLens :: Functor f => ([Build] -> f [Build]) -> Version -> f Version
Documentation
This module doesn't export anything that conflicts with the Prelude, so you can import it unqualified.
>>>import Salve
The Version data type is the core of this module. Use parseVersion to
make versions and renderVersion to convert them into strings.
>>>renderVersion <$> parseVersion "1.2.3"Just "1.2.3"
The Constraint data type allows you to specify version constraints. Use
parseConstraint to make constraints and renderConstraint to convert them
into strings.
>>>renderConstraint <$> parseConstraint ">1.2.0"Just ">1.2.0"
Use satisfies to see if a version satisfies a constraint.
>>>satisfies <$> parseVersion "1.2.3" <*> parseConstraint ">1.2.0"Just True
Types
A semantic version number. Versions have five parts:
majorLens: The major version number.minorLens: The minor version number.patchLens: The patch version number.preReleasesLens: A list of pre-release identifiers.buildsLens: A list of build metadata.
Use parseVersion to create versions.
Instances
| Eq Version Source # | |
| Ord Version Source # | In general,
Numbers are compared numerically, not alphabetically.
If all the numbers are the same, the pre-releases are compared.
A version with a pre-release is always less than a version without one as long as the other parts are the same.
Builds are not considered when comparing versions.
|
| Show Version Source # | |
data PreRelease Source #
Pre-release information attached to a version. These can either be numeric or textual. They must not be empty.
- Numeric: Can be any non-negative integer. Cannot have leading zeros.
- Textual: Can be any string of ASCII digits, letters, or hyphens. Cannot be all digits, as that would be numeric.
In general, pre-releases must match the regular expression
/^[-0-9A-Za-z]+$/.
Use parsePreRelease to create pre-releases.
Instances
| Eq PreRelease Source # | |
| Ord PreRelease Source # | Numeric pre-releases are always less than textual pre-releases.
Numeric pre-releases are compared numerically.
Textual pre-releases are compared alphabetically.
|
| Show PreRelease Source # | |
Build metadata attached to a version. These are similar to
PreReleases with some key differences:
- There is no such thing as numeric builds. Even though builds can look like numbers, all builds are textual.
- As a result, builds that look numeric are allowed to have leading zeros.
- Builds cannot be compared. That is, they do not have an
Ordinstance.
Use parseBuild to create builds.
data Constraint Source #
Constrains allowable version numbers.
Use parseConstraint to create constraints and satisfies to see if a
version number satisfies a constraint.
Instances
Parsing
parseVersion :: String -> Maybe Version Source #
Attempts to parse a version. This parser follows SemVer's BNF.
>>>parseVersion "1.2.3-p.4+b.5"Just (Version {versionMajor = 1, versionMinor = 2, versionPatch = 3, versionPreReleases = [PreReleaseTextual "p",PreReleaseNumeric 4], versionBuilds = [Build "b",Build "5"]})
Returns Nothing if the parse fails.
>>>parseVersion "wrong"Nothing
Whitespace is not allowed and will cause the parser to fail.
>>>parseVersion " 1.2.3 "Nothing
parsePreRelease :: String -> Maybe PreRelease Source #
Attempts to parse a pre-release.
>>>parsePreRelease "pre"Just (PreReleaseTextual "pre")>>>parsePreRelease "1"Just (PreReleaseNumeric 1)
Returns Nothing if the parse fails.
>>>parsePreRelease "wrong!"Nothing
Numeric pre-releases cannot contain leading zeros.
>>>parsePreRelease "01"Nothing
parseBuild :: String -> Maybe Build Source #
Attempts to parse a build.
>>>parseBuild "build"Just (Build "build")>>>parseBuild "1"Just (Build "1")
Returns Nothing if the parse fails.
>>>parseBuild "wrong!"Nothing
Unlike pre-releases, numeric builds can have leading zeros.
>>>parseBuild "01"Just (Build "01")
parseConstraint :: String -> Maybe Constraint Source #
Attempts to parse a constraint. This parser follows npm's
BNF,
except that neither the so-called "x-ranges" nor partial version numbers are
not supported. So you cannot use 1.2.x or >1.2 as version constraints.
>>>parseConstraint ">1.2.3"Just (ConstraintCompare OperatorGT (Version {versionMajor = 1, versionMinor = 2, versionPatch = 3, versionPreReleases = [], versionBuilds = []}))
Returns Nothing if the parse fails.
>>>parseConstraint "wrong"Nothing
Unsafe
These functions can be used to unsafely parse strings. Instead of
returning Nothing, they raise an exception. Only use these if you are sure
the string can be successfully parsed!
unsafeParseVersion :: String -> Version Source #
Parses a version.
>>>unsafeParseVersion "1.2.3-p.4+b.5"Version {versionMajor = 1, versionMinor = 2, versionPatch = 3, versionPreReleases = [PreReleaseTextual "p",PreReleaseNumeric 4], versionBuilds = [Build "b",Build "5"]}
Raises an exception if the parse fails.
>>>unsafeParseVersion "wrong"*** Exception: invalid version: "wrong" ...
See parseVersion for a safe version of this function.
unsafeParsePreRelease :: String -> PreRelease Source #
Parses a pre-release.
>>>unsafeParsePreRelease "pre"PreReleaseTextual "pre"
Raises an exception if the parse fails.
>>>unsafeParsePreRelease "wrong!"*** Exception: invalid pre-release: "wrong!" ...
See parsePreRelease for a safe version of this function.
unsafeParseBuild :: String -> Build Source #
Parses a build.
>>>unsafeParseBuild "build"Build "build"
Raises an exception if the parse fails.
>>>unsafeParseBuild "wrong!"Build "*** Exception: invalid build: "wrong!" ...
See parseBuild for a safe version of this function.
unsafeParseConstraint :: String -> Constraint Source #
Parses a constraint.
>>>unsafeParseConstraint ">1.2.3"ConstraintCompare OperatorGT (Version {versionMajor = 1, versionMinor = 2, versionPatch = 3, versionPreReleases = [], versionBuilds = []})
Raises an exception if the parse fails.
>>>unsafeParseConstraint "wrong"*** Exception: invalid constraint: "wrong" ...
See parseConstraint for a safe version of this function.
Rendering
renderVersion :: Version -> String Source #
Renders a version.
>>>renderVersion <$> parseVersion "1.2.3-p.4+b.5"Just "1.2.3-p.4+b.5"
renderPreRelease :: PreRelease -> String Source #
Renders a pre-release.
>>>renderPreRelease <$> parsePreRelease "pre"Just "pre">>>renderPreRelease <$> parsePreRelease "1"Just "1"
renderBuild :: Build -> String Source #
Renders a build.
>>>renderBuild <$> parseBuild "build"Just "build">>>renderBuild <$> parseBuild "1"Just "1"
renderConstraint :: Constraint -> String Source #
Renders a constraint.
>>>renderConstraint <$> parseConstraint ">1.2.3"Just ">1.2.3"
Parsing and rendering a constraint doesn't always return what you started with.
>>>renderConstraint <$> parseConstraint "=1.2.3"Just "1.2.3"
Predicates
isUnstable :: Version -> Bool Source #
Helpers
bumpMajor :: Version -> Version Source #
Increments the major version number.
>>>bumpMajor <$> parseVersion "0.0.0"Just (Version {versionMajor = 1, versionMinor = 0, versionPatch = 0, versionPreReleases = [], versionBuilds = []})
The minor and patch numbers are reset to zero.
>>>bumpMajor <$> parseVersion "1.2.3"Just (Version {versionMajor = 2, versionMinor = 0, versionPatch = 0, versionPreReleases = [], versionBuilds = []})
The pre-releases and builds are removed.
>>>bumpMajor <$> parseVersion "0.0.0-pre+build"Just (Version {versionMajor = 1, versionMinor = 0, versionPatch = 0, versionPreReleases = [], versionBuilds = []})
Consider using majorLens if you want to arbitrarily change the major
number, or if you don't want the other parts of the version to change.
bumpMinor :: Version -> Version Source #
Increments the minor version number.
>>>bumpMinor <$> parseVersion "0.0.0"Just (Version {versionMajor = 0, versionMinor = 1, versionPatch = 0, versionPreReleases = [], versionBuilds = []})
The patch number is reset to zero.
>>>bumpMinor <$> parseVersion "1.2.3"Just (Version {versionMajor = 1, versionMinor = 3, versionPatch = 0, versionPreReleases = [], versionBuilds = []})
The pre-releases and builds are removed.
>>>bumpMinor <$> parseVersion "0.0.0-pre+build"Just (Version {versionMajor = 0, versionMinor = 1, versionPatch = 0, versionPreReleases = [], versionBuilds = []})
Consider using minorLens if you want to arbitrarily change the minor
number, or if you don't want the other parts of the version to change.
bumpPatch :: Version -> Version Source #
Increments the patch number.
>>>bumpPatch <$> parseVersion "0.0.0"Just (Version {versionMajor = 0, versionMinor = 0, versionPatch = 1, versionPreReleases = [], versionBuilds = []})
The major and minor numbers are not changed.
>>>bumpPatch <$> parseVersion "1.2.3"Just (Version {versionMajor = 1, versionMinor = 2, versionPatch = 4, versionPreReleases = [], versionBuilds = []})
The pre-releases and builds are removed.
>>>bumpPatch <$> parseVersion "0.0.0-pre+build"Just (Version {versionMajor = 0, versionMinor = 0, versionPatch = 1, versionPreReleases = [], versionBuilds = []})
Consider using patchLens if you want to arbitrarily change the patch
number, or if you don't want the other parts of the version to change.
Lenses
These lenses can be used to access and modify specific parts of a
Version.
Don't be scared by these type signatures. They are provided in full to avoid
the RankNTypes language extension. The type signature
is the same as
Functor f => (a -> f a) -> Version -> f Version (from Lens.Micro), which you may already
be familiar with.Lens' Version a
majorLens :: Functor f => (Word -> f Word) -> Version -> f Version Source #
Focuses on the major version number.
>>>view majorLens <$> parseVersion "1.2.3-pre.4+build.5"Just 1
minorLens :: Functor f => (Word -> f Word) -> Version -> f Version Source #
Focuses on the minor version number.
>>>view minorLens <$> parseVersion "1.2.3-pre.4+build.5"Just 2
patchLens :: Functor f => (Word -> f Word) -> Version -> f Version Source #
Focuses on the patch version number.
>>>view patchLens <$> parseVersion "1.2.3-pre.4+build.5"Just 3
preReleasesLens :: Functor f => ([PreRelease] -> f [PreRelease]) -> Version -> f Version Source #
Focuses on the pre-release identifiers.
>>>view preReleasesLens <$> parseVersion "1.2.3-pre.4+build.5"Just [PreReleaseTextual "pre",PreReleaseNumeric 4]