rhythmic-sequences 0.2.0.0 → 0.2.0.1
raw patch · 3 files changed
+8/−1 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- CHANGELOG.md +4/−0
- rhythmic-sequences.cabal +1/−1
- src/Rhythmicity/MarkerSeqs.hs +3/−0
CHANGELOG.md view
@@ -27,3 +27,7 @@ * Second version. Added the functions to read the HashCorrections data and the other needed for countHashesG function. +## 0.2.0.1 -- 2023-03-10++* Second version revised A. Some documentation improvement.+
rhythmic-sequences.cabal view
@@ -2,7 +2,7 @@ name: rhythmic-sequences -- The package version.-version: 0.2.0.0+version: 0.2.0.1 -- A short (one-line) description of the package. synopsis:
src/Rhythmicity/MarkerSeqs.hs view
@@ -150,8 +150,11 @@ -- instead of dots specify some digits that are the beginning of the ['Int8'] list in -- 'HashCorrections'. -- Caution: +-- -- > readHashCorrections . show $ xs /= xs+-- -- > show . readHashCorrections $ xs /= xs+-- -- in general case. The default value is @H [0,0..] 0@. readHashCorrections :: String -> HashCorrections readHashCorrections xs = if length ys > 1 then let (ts,us) = splitAt 1 ys in H (map (\x -> read [x]::Int8) us) (read ts::Int8) else H [0,0..] 0