phonetic-languages-phonetics-basics 0.8.2.0 → 0.8.3.0
raw patch · 3 files changed
+6/−2 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- ChangeLog.md +4/−0
- Data/Phonetic/Languages/PrepareText.hs +1/−1
- phonetic-languages-phonetics-basics.cabal +1/−1
ChangeLog.md view
@@ -104,3 +104,7 @@ ## 0.8.2.0 -- 2021-08-30 * Eigth version revised B. Removed deprecated filtering from the Data.Phonetic.Languages.PrepareText module.++## 0.8.3.0 -- 2021-08-31++* Eigth version revised C. Fixed issue with splitLinesN function.
Data/Phonetic/Languages/PrepareText.hs view
@@ -149,7 +149,7 @@ splitLinesN n xss | null xss || n <= 0 = [] | otherwise = mapI (\xs -> compare (length . words $ xs) n == GT) (\xs -> let yss = words xs in- splitLines . map unwords . (\(q,r) -> [q,r]) . splitAt (length yss `quot` 2) $ yss) $ xss+ splitLinesN n . map unwords . (\(q,r) -> [q,r]) . splitAt (length yss `quot` 2) $ yss) $ xss ------------------------------------------------
phonetic-languages-phonetics-basics.cabal view
@@ -3,7 +3,7 @@ -- http://haskell.org/cabal/users-guide/ name: phonetic-languages-phonetics-basics-version: 0.8.2.0+version: 0.8.3.0 synopsis: A library for working with generalized phonetic languages usage. description: There already exists a Ukrainian implementation for the phonetic languages approach published at: https://hackage.haskell.org/package/phonetic-languages-simplified-examples-array. It is optimized for the Ukrainian only and needs to be rewritten for every new language mostly from scratch using it as a template. To avoid this boilerplate, this one is provided. It can be used for different languages and even for music or other fields. Now it combines the functionality of the @r-glpk-phonetic-languages-ukrainian-durations@ and @phonetic-languages-ukrainian-array@ and some dependencies of the mentioned one. homepage: https://hackage.haskell.org/package/phonetic-languages-phonetics-basics