Skip to content
Snippets Groups Projects
Unverified Commit 1d2ff345 authored by Oleg Grenrus's avatar Oleg Grenrus Committed by GitHub
Browse files

Merge pull request #6191 from haskell/cabal-version-3.2

Add cabal-version: 3.2
parents e6148389 09210e3a
No related branches found
No related tags found
No related merge requests found
......@@ -26,12 +26,14 @@ data CabalSpecVersion
| CabalSpecV2_2
| CabalSpecV2_4
| CabalSpecV3_0
| CabalSpecV3_2
deriving (Eq, Ord, Show, Read, Enum, Bounded, Typeable, Data, Generic)
-- | Show cabal spec version, but not the way in the .cabal files
--
-- @since 3.0.0.0
showCabalSpecVersion :: CabalSpecVersion -> String
showCabalSpecVersion CabalSpecV3_2 = "3.2"
showCabalSpecVersion CabalSpecV3_0 = "3.0"
showCabalSpecVersion CabalSpecV2_4 = "2.4"
showCabalSpecVersion CabalSpecV2_2 = "2.2"
......@@ -49,10 +51,11 @@ showCabalSpecVersion CabalSpecV1_2 = "1.2"
showCabalSpecVersion CabalSpecV1_0 = "1.0"
cabalSpecLatest :: CabalSpecVersion
cabalSpecLatest = CabalSpecV3_0
cabalSpecLatest = CabalSpecV3_2
cabalSpecFromVersionDigits :: [Int] -> CabalSpecVersion
cabalSpecFromVersionDigits v
| v >= [3,1] = CabalSpecV3_2
| v >= [2,5] = CabalSpecV3_0
| v >= [2,3] = CabalSpecV2_4
| v >= [2,1] = CabalSpecV2_2
......
......@@ -13,6 +13,7 @@ data LicenseListVersion
deriving (Eq, Ord, Show, Enum, Bounded)
cabalSpecVersionToSPDXListVersion :: CabalSpecVersion -> LicenseListVersion
cabalSpecVersionToSPDXListVersion CabalSpecV3_2 = LicenseListVersion_3_6
cabalSpecVersionToSPDXListVersion CabalSpecV3_0 = LicenseListVersion_3_6
cabalSpecVersionToSPDXListVersion CabalSpecV2_4 = LicenseListVersion_3_2
cabalSpecVersionToSPDXListVersion _ = LicenseListVersion_3_0
......@@ -19,6 +19,11 @@ relative to the respective preceding *published* version.
versions of the ``Cabal`` library denote unreleased development
branches which have no stability guarantee.
``cabal-version: 3.2``
----------------------
* Nothing yet
``cabal-version: 3.0``
----------------------
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment