bookkeeping 0.2.0.1 → 0.2.1.0
raw patch · 3 files changed
+5/−5 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
+ Business.Bookkeeping: instance GHC.Enum.Enum Business.Bookkeeping.Date
+ Business.Bookkeeping: instance GHC.Enum.Enum Business.Bookkeeping.Month
+ Business.Bookkeeping: instance GHC.Enum.Enum Business.Bookkeeping.Year
Files
- README.md +1/−1
- bookkeeping.cabal +1/−1
- src/Business/Bookkeeping.hs +3/−3
README.md view
@@ -1,4 +1,4 @@-[](https://travis-ci.org/arowM/heterocephalus)+[](https://travis-ci.org/arowM/haskell-bookkeeping) [](https://hackage.haskell.org/package/bookkeeping) [](http://stackage.org/lts/package/bookkeeping) [](http://stackage.org/nightly/package/bookkeeping)
bookkeeping.cabal view
@@ -1,5 +1,5 @@ name: bookkeeping-version: 0.2.0.1+version: 0.2.1.0 synopsis: A module for bookkeeping by double entry. description: A module for bookkeeping by double entry. This module provides a way to do bookkeeping programmatically.
src/Business/Bookkeeping.hs view
@@ -201,15 +201,15 @@ newtype Year = Year { unYear :: Integer- } deriving (Show, Read, Ord, Eq, Num)+ } deriving (Show, Read, Ord, Eq, Num, Enum) newtype Month = Month { unMonth :: Int- } deriving (Show, Read, Ord, Eq, Num)+ } deriving (Show, Read, Ord, Eq, Num, Enum) newtype Date = Date { unDate :: Int- } deriving (Show, Read, Ord, Eq, Num)+ } deriving (Show, Read, Ord, Eq, Num, Enum) newtype Description = Description { unDescription :: Text