packages feed

print-info 0.1.0.0 → 0.1.1.0

raw patch · 3 files changed

+13/−1 lines, 3 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

+ Data.Print.Info: isI1 :: InfoG a b -> Bool
+ Data.Print.Info: isI2 :: InfoG a b -> Bool

Files

ChangeLog.md view
@@ -3,3 +3,7 @@ ## 0.1.0.0 -- 2020-09-01  * First version. Released on an unsuspecting world.++## 0.1.1.0 -- 2020-09-01++* First version revised A. Added the functions isI1 and isI2 to the Data.Print.Info module.
Data/Print/Info.hs view
@@ -20,3 +20,11 @@  -- | Type synonym used to coordinate the printing output in general case.  type Info2 = InfoG Info InfoFile++isI1 :: InfoG a b -> Bool+isI1 (I1 _) = True+isI1 _ = False++isI2 :: InfoG a b -> Bool+isI2 (I2 _) = True+isI2 _ = False
print-info.cabal view
@@ -2,7 +2,7 @@ -- documentation, see http://haskell.org/cabal/users-guide/  name:                print-info-version:             0.1.0.0+version:             0.1.1.0 synopsis:            Can be used to coordinate the printing output. description:         Can be used to coordinate the printing output. homepage:            https://hackage.haskell.org/package/print-info