Fix whitespace violations
[cabal.git] / cabal-install / src / Distribution / Client / Version.hs
blob36f10ea3df01f9a170e5a87c299b44c2697c7034
1 -- | Provides the version number of @cabal-install@.
3 module Distribution.Client.Version
4 ( cabalInstallVersion
5 ) where
7 import Distribution.Version
9 -- This value determines the `cabal-install --version` output.
11 -- It is used in several places throughout the project, including anonymous build reports, client configuration,
12 -- and project planning output. Historically, this was a @Paths_*@ module, however, this conflicted with
13 -- program coverage information generated by HPC, and hence was moved to be a standalone value.
15 cabalInstallVersion :: Version
16 cabalInstallVersion = mkVersion [3,9]