phonetic-languages-plus 0.4.0.0 → 0.4.1.0
raw patch · 3 files changed
+7/−3 lines, 3 files
Files
- ChangeLog.md +4/−0
- Distribution/Main.hs +1/−1
- phonetic-languages-plus.cabal +2/−2
ChangeLog.md view
@@ -25,3 +25,7 @@ * Fourth version. Moved the functionality for the reversing the concatenations in Ukranian to the phonetic-languages-ukrainian-array package where it is logically and practically more suitable. Updated (reduced) the dependencies accordingly.++## 0.4.1.0 -- 2021-09-08++* Fourth version revised A. Fixed issue with missing pragma for bang patterns in the Main.hs file.
Distribution/Main.hs view
@@ -24,7 +24,7 @@ {-# OPTIONS_GHC -threaded -rtsopts #-} -{-# LANGUAGE CPP #-}+{-# LANGUAGE CPP, BangPatterns #-} module Main where
phonetic-languages-plus.cabal view
@@ -3,7 +3,7 @@ -- http://haskell.org/cabal/users-guide/ name: phonetic-languages-plus-version: 0.4.0.0+version: 0.4.1.0 synopsis: Some common shared between different packages functions. description: Among them are the uniqueness-periods-vector series. homepage: https://hackage.haskell.org/package/phonetic-languages-plus@@ -28,7 +28,7 @@ executable distributionTextG main-is: Main.hs other-modules: Data.Statistics.RulesIntervals, Data.Statistics.RulesIntervalsPlus, Distribution.Processment- other-extensions: CPP+ other-extensions: CPP, BangPatterns build-depends: base >=4.7 && <4.16, bytestring >= 0.10 && < 0.14, lists-flines >=0.1.1 && <1, uniqueness-periods-vector-stats >=0.2.1 && <1, parallel >=3.2.0.6 && <4 ghc-options: -threaded -rtsopts hs-source-dirs: ., Distribution