phonetic-languages-examples 0.3.1.0 → 0.3.1.1
raw patch · 5 files changed
+9/−6 lines, 5 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- CHANGELOG.md +5/−2
- GetInfo/Main.hs +1/−1
- Lines/Main.hs +1/−1
- Simple/Main.hs +1/−1
- phonetic-languages-examples.cabal +1/−1
CHANGELOG.md view
@@ -25,5 +25,8 @@ ## 0.3.1.0 -- 2020-11-09 -* Third version revised A. Fixed the wrong comment about the first command line argument that specifies the coefficients. Fixed issue with the wrong output-option for one of the columns in the propertiesTextG executable running output.+* Third version revised A. Fixed issue with the wrong output option for one of the columns in the propertiesTextG executable running output.++## 0.3.1.1 -- 2020-11-09++* Third version revised A. Fixed the wrong comment about the first command line argument.
GetInfo/Main.hs view
@@ -55,7 +55,7 @@ main :: IO () main = do args <- getArgs- let !coeffs = readCF . concat . take 1 $ args -- The first command line argument. If not sure, pass just \"_\".+ let !coeffs = readCF . concat . take 1 $ args -- The first command line argument. If not sure, just enter \"1_\". if isPair coeffs then do let !file = concat . drop 1 . take 2 $ args -- The second command line arguments except those ones that are RTS arguments !gzS = concat . take 1 . drop 2 $ args -- The third command line argument that controls the choice of the number of intervals
Lines/Main.hs view
@@ -46,7 +46,7 @@ main :: IO () main = do args <- getArgs- let coeffs = readCF . concat . take 1 $ args -- The first command line argument. If not sure, pass just \"_\".+ let coeffs = readCF . concat . take 1 $ args -- The first command line argument. If not sure, pass just \"1_\". if isPair coeffs then do let !numericArgs = filter (all isDigit) . drop 3 $ args !choice = concat . drop 2 . take 3 $ args
Simple/Main.hs view
@@ -48,7 +48,7 @@ main :: IO () main = do args <- getArgs- let coeffs = readCF . concat . take 1 $ args -- The first command line argument. If not sure, just pass \"_\".+ let coeffs = readCF . concat . take 1 $ args -- The first command line argument. If not sure, just pass \"1_\". !whspss = VB.fromList " 01-" if isPair coeffs then do let (!numericArgs,!textualArgs) = L.span (all isDigit) . drop 1 $ args
phonetic-languages-examples.cabal view
@@ -2,7 +2,7 @@ -- further documentation, see http://haskell.org/cabal/users-guide/ name: phonetic-languages-examples-version: 0.3.1.0+version: 0.3.1.1 synopsis: A generalization of the uniqueness-periods-vector-examples functionality. description: Is intended to use more functionality of the Data.Vector, Data.Foldable, Data.Monoid and Data.SubG modules. homepage: https://hackage.haskell.org/package/phonetic-languages-examples