lists-flines 0.1.0.0 → 0.1.0.1
raw patch · 3 files changed
+8/−2 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- CHANGELOG.md +4/−0
- Data/Lists/FLines.hs +3/−1
- lists-flines.cabal +1/−1
CHANGELOG.md view
@@ -3,3 +3,7 @@ ## 0.1.0.0 -- 2020-10-05 * First version. Released on an unsuspecting world.++## 0.1.0.1 -- 2020-10-05++* First version revised A. Fixed issue with the wrong import statements order.
Data/Lists/FLines.hs view
@@ -18,13 +18,15 @@ import GHC.Base (mconcat) #endif #endif+import System.IO+ #ifdef __GLASGOW_HASKELL__ #if __GLASGOW_HASKELL__==708 /* code that applies only to GHC 7.8.* */ mconcat = concat #endif #endif-import System.IO+ -- | Auxiliary printing function to define the line ending needed to be shown and printed. Is primarily defined in the @uniqueness-periods-vector-general@ package (https://hackage.haskell.org/package/uniqueness-periods-vector-general). newLineEnding :: String
lists-flines.cabal view
@@ -2,7 +2,7 @@ -- documentation, see http://haskell.org/cabal/users-guide/ name: lists-flines-version: 0.1.0.0+version: 0.1.0.1 synopsis: Additional data and structures to some 'String'-related lists. description: Is primarily used to transform some Strings read from a file. homepage: https://hackage.haskell.org/package/lists-flines