packages feed

mmsyn7s 0.3.0.0 → 0.3.0.1

raw patch · 4 files changed

+14/−2 lines, 4 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

CHANGELOG.md view
@@ -18,3 +18,7 @@ * Third version. Added README.markdown file. Added the analysis for the first command line argument. Added the possibility to process a Ukrainian text as a whole or alternatively by parts, each of which contains only unique String Ukrainian sounds representations (except for the silent ones). Some minor code and documentation improvements.++## 0.3.0.1 -- 2020-02-25++* Third version revised A. Improved formatting for the README.markdown file.
MMSyn7s.hs view
@@ -63,7 +63,7 @@                  ; putStrLn "      the \"0\" option prints the list of String for the whole text"                  ; putStrLn "      the other beginning is equivalent to the previous one behaviour."                   }-      "-v" -> putStrLn "mmsyn7s: version 0.3.0.0"+      "-v" -> putStrLn "mmsyn7s: version 0.3.0.1"       "1"  -> do { putStrLn . show . fst . show7s5 . unwords . drop 1 $ texts                  ; putStrLn . snd . show7s5 . unwords . drop 1 $ texts }       "0"  -> putStrLn . show7s2 . unwords . drop 1 $ texts
README.markdown view
@@ -8,19 +8,27 @@ that can be used further in mmsyn7 series of programs.  Depending on the first command line argument the program behaves as follows:+ "-h" -- prints help and exits;+ "-v" -- prints version number and exits;+ "1"  -- prints the list of String being unique (without silence) and then the rest of the text with whitespaces;+ "0"  -- prints the list of String for the whole text.+ All other variants of the beginning for the command line arguments are the same as "0" (the arguments are treated as a Ukrainian text and processed as a whole one object).          The resulting Strings and lists of Strings can be used further in the programs:+ [mmsyn7ukr](https://hackage.haskell.org/package/mmsyn7ukr)+ [mmsyn7h](https://hackage.haskell.org/package/mmsyn7h)  The results of the previous ones can be processed also by the program: + [mmsyn7l](https://hackage.haskell.org/package/mmsyn7l)
mmsyn7s.cabal view
@@ -2,7 +2,7 @@ -- documentation, see http://haskell.org/cabal/users-guide/  name:                mmsyn7s-version:             0.3.0.0+version:             0.3.0.1 synopsis:            Shows a sorted list of the Ukrainian sounds representations that can be used by mmsyn7 series of programs description:         A program and a library that show a sorted list of the Ukrainian sounds representations that can be used by mmsyn7 series of programs homepage:            https://hackage.haskell.org/package/mmsyn7s