mmsyn7s 0.1.0.0 → 0.1.1.0
raw patch · 3 files changed
+11/−3 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
+ MMSyn7s: show7s2 :: String -> String
Files
- CHANGELOG.md +5/−0
- MMSyn7s.hs +3/−0
- mmsyn7s.cabal +3/−3
CHANGELOG.md view
@@ -3,3 +3,8 @@ ## 0.1.0.0 -- 2020-01-09 * First version. Released on an unsuspecting world.++## 0.1.1.0 -- 2020-01-10++* First version revised A. Added a function show7s2 for the usage in the mmsyn7ukr package.+
MMSyn7s.hs view
@@ -29,3 +29,6 @@ show7s :: String -> [String] show7s xs = sort . nub . V.toList . V.filter (\x -> x /= "-" && x /= "1" && x /= "0") . convertToProperUkrainian $ xs +-- | Function takes Ukrainian text being a @String@ and returns a @String@ that is shown sorted list of the Ukrainian sounds representations that can be used further in mmsyn7 series of programs.+show7s2 :: String -> String+show7s2 xs = show . sort . nub . V.toList . V.filter (\x -> x /= "-" && x /= "1" && x /= "0") . convertToProperUkrainian $ xs
mmsyn7s.cabal view
@@ -2,15 +2,15 @@ -- documentation, see http://haskell.org/cabal/users-guide/ name: mmsyn7s-version: 0.1.0.0+version: 0.1.1.0 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 license: MIT license-file: LICENSE-author: (c) OleksandrZhabenko 2020+author: OleksandrZhabenko maintainer: olexandr543@yahoo.com--- copyright:+copyright: (c) OleksandrZhabenko 2020 category: Language build-type: Simple extra-source-files: CHANGELOG.md