packages feed

dbf 0.0.0.1 → 0.0.0.2

raw patch · 2 files changed

+2/−1 lines, 2 filesPVP: major bump suggested

API removals or changes: PVP suggests a major version bump

API changes (from Hackage documentation)

- Database.XBase.Dbf.Structures: instance (Eq yearType) => Eq (DbfDate yearType)
- Database.XBase.Dbf.Structures: instance (Show yearType) => Show (DbfDate yearType)
+ Database.XBase.Dbf: readDbfFile :: FilePath -> IO (DbfFileHeader, [DbfRecord])
+ Database.XBase.Dbf: writeDbfFile :: FilePath -> (DbfFileHeader, [DbfRecord]) -> IO ()
+ Database.XBase.Dbf.Structures: instance Eq yearType => Eq (DbfDate yearType)
+ Database.XBase.Dbf.Structures: instance Show yearType => Show (DbfDate yearType)

Files

dbf.cabal view
@@ -1,5 +1,5 @@ name:                   dbf-version:                0.0.0.1+version:                0.0.0.2 stability:              experimental  cabal-version:          >= 1.2
src/Database/XBase/Dbf.hs view
@@ -2,6 +2,7 @@     ( module Database.XBase.Dbf.Structures     , module Database.XBase.Dbf.Handle     , module Database.XBase.Dbf.Year8+    , readDbfFile, writeDbfFile     ) where  import Database.XBase.Dbf.Structures