phonetic-languages-common 0.1.0.0 → 0.1.1.0
raw patch · 4 files changed
+12/−7 lines, 4 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- CHANGELOG.md +5/−0
- Languages/UniquenessPeriods/Vector/DataG.hs +1/−1
- Languages/UniquenessPeriods/Vector/StrictVG.hs +4/−4
- phonetic-languages-common.cabal +2/−2
CHANGELOG.md view
@@ -3,3 +3,8 @@ ## 0.1.0.0 -- 2020-10-30 * First version. Released on an unsuspecting world.++## 0.1.1.0 -- 2020-10-30++* First version revised A. Fixed issue with being not compiled for GHC-7.10* series.+
Languages/UniquenessPeriods/Vector/DataG.hs view
@@ -9,7 +9,7 @@ -- functionality from the @dobutokO-poetry-general@ package. -- -{-# LANGUAGE FlexibleInstances, MultiParamTypeClasses #-}+{-# LANGUAGE FlexibleContexts, FlexibleInstances, MultiParamTypeClasses #-} module Languages.UniquenessPeriods.Vector.DataG where
Languages/UniquenessPeriods/Vector/StrictVG.hs view
@@ -7,11 +7,11 @@ -- -- Generalization of the DobutokO.Poetry.StrictV module functionality from -- the @dobutokO-poetry-general@ package.--- Can be used to get possible permutations of no more than 7 sublists--- in the list separated with the elements of the \"whitespace symbols\"--- list.+-- Can be used to get possible permutations of no more than 7 substructures+-- in the 'F.Foldable' structure separated with the elements of the \"whitespace symbols\"+-- structure. -{-# LANGUAGE CPP, BangPatterns, FlexibleInstances, MultiParamTypeClasses #-}+{-# LANGUAGE CPP, BangPatterns, FlexibleContexts, FlexibleInstances, MultiParamTypeClasses #-} module Languages.UniquenessPeriods.Vector.StrictVG ( universalSetG
phonetic-languages-common.cabal view
@@ -2,7 +2,7 @@ -- further documentation, see http://haskell.org/cabal/users-guide/ name: phonetic-languages-common-version: 0.1.0.0+version: 0.1.1.0 synopsis: A generalization of the uniqueness-periods-vector-common package. description: Is intended to use more Data.Vector, Data.Foldable and Data.Monoid functionality. homepage: https://hackage.haskell.org/package/phonetic-languages-common@@ -19,7 +19,7 @@ library exposed-modules: Languages.UniquenessPeriods.Vector.StrictVG, Languages.UniquenessPeriods.Vector.DataG -- other-modules:- other-extensions: CPP, BangPatterns, FlexibleInstances, MultiParamTypeClasses+ other-extensions: CPP, BangPatterns, FlexibleContexts, FlexibleInstances, MultiParamTypeClasses build-depends: base >=4.7 && <4.15, vector >=0.11 && <0.14, subG >=0.1.1.1 && <1 -- hs-source-dirs: default-language: Haskell2010