phladiprelio-general-datatype 0.2.1.0 → 0.2.2.0
raw patch · 4 files changed
+12/−4 lines, 4 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- CHANGELOG.md +4/−0
- Phladiprelio/General/Datatype.hs +6/−2
- README.md +1/−1
- phladiprelio-general-datatype.cabal +1/−1
CHANGELOG.md view
@@ -17,3 +17,7 @@ * Second version revised A. Fixed issue with readU2 function. +## 0.2.2.0 -- 2023-09-23++* Second version revised B. Fixed issue with readBasic0G function and related ones.+
Phladiprelio/General/Datatype.hs view
@@ -39,10 +39,14 @@ -> ([a] -> [Double]) -> String -> [Double]-readBasic0G p temp fConvA fConvD xs@(_:_) = dc `mappend` ((readU2 ws * d) : readBasic0G p d fConvA fConvD qs)+readBasic0G p temp fConvA fConvD xs@('_':ys) = (readU2 ws * temp) : readBasic0G p temp fConvA fConvD qs+ where (ws, qs) = span isDigit ys+readBasic0G p temp fConvA fConvD xs@(_:_) + | null us = dc+ | otherwise = dc `mappend` ((readU2 ws * d) : readBasic0G p d fConvA fConvD qs) where (ts, us) = break (== '_') xs dc - | not . p $ ts = [temp]+ | null ts || not (p ts) = [temp] | otherwise = fConvD . fConvA $ ts d = last dc vs = dropWhile (== '_') us
README.md view
@@ -16,7 +16,7 @@ P.S.: the author would like to devote this project to support the [Foundation Gastrostars](https://gastrostars.nl). -On the 2023/09/22 there is Nathalie's Kok birthday. She is the mother of the foundation founder [Emma Kok](https://emmakok.nl) and the member of the foundation board, so the versions 0.1.0.0, 0.1.1.0, 0.2.0.0 and 0.2.1.0 (the four first ones!) are also dedicated to Nathalie Kok.+On the 2023/09/22 there is Nathalie's Kok birthday. She is the mother of the foundation founder [Emma Kok](https://emmakok.nl) and the member of the foundation board, so the versions 0.1.0.0, 0.1.1.0, 0.2.0.0, 0.2.1.0 and 0.2.2.0 (the five first ones!) are also dedicated to Nathalie Kok. If you would like to share some financial support, please, contact the mentioned foundation using the URL:
phladiprelio-general-datatype.cabal view
@@ -1,6 +1,6 @@ cabal-version: 1.24 name: phladiprelio-general-datatype-version: 0.2.1.0+version: 0.2.2.0 synopsis: Extended functionality of PhLADiPreLiO description: Can be used not only for language, but also for simpler music and lyrics composing. homepage: