packages feed

phladiprelio-general-datatype 0.2.0.0 → 0.2.1.0

raw patch · 4 files changed

+11/−4 lines, 4 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

CHANGELOG.md view
@@ -13,3 +13,7 @@ * Second version. Added new functions, some generalization provided. Improved .cabal file.  Some minor documentation improvements. Fixed inaccuracies in the documentation. +## 0.2.1.0 -- 2023-09-23++* Second version revised A. Fixed issue with readU2 function.+
Phladiprelio/General/Datatype.hs view
@@ -6,8 +6,9 @@ import GHC.Base import GHC.List import Data.Char (isDigit, isSpace)-import Text.Read+import Text.Read (readMaybe) import GHC.Num ((*))+import Data.Maybe (fromMaybe)  data Phladiprelio t a b = Phl {   inputData :: t a,@@ -54,5 +55,7 @@  -- | Is a way to read duration of the additional added time period into the line. readU2 :: String -> Double-readU2 xs@(y:ys) = read (y:'.':ys)::Double+readU2 xs@(y:ys) = fromMaybe 1.0 (readMaybe (y:'.':ys)::Maybe Double)+readU2 _ = 1.0+{-# INLINABLE readU2 #-} 
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 and 0.2.0.0 (the three 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 and 0.2.1.0 (the four 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.0.0+version:            0.2.1.0 synopsis:           Extended functionality of PhLADiPreLiO description:        Can be used not only for language, but also for simpler music and lyrics composing. homepage: