google-isbn 0.2 → 0.3
raw patch · 2 files changed
+4/−4 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
+ Google.ISBN: Book :: Text -> Text -> Maybe Text -> Text -> Text -> Text -> Maybe [Text] -> Book
+ Google.ISBN: GoogleISBN :: Integer -> [Book] -> GoogleISBN
+ Google.ISBN: [bookAuthors] :: Book -> Maybe [Text]
+ Google.ISBN: [bookDescription] :: Book -> Text
+ Google.ISBN: [bookLanguage] :: Book -> Text
+ Google.ISBN: [bookPublishedDate] :: Book -> Text
+ Google.ISBN: [bookPublisher] :: Book -> Maybe Text
+ Google.ISBN: [bookSubtitle] :: Book -> Text
+ Google.ISBN: [bookTitle] :: Book -> Text
+ Google.ISBN: [googleISBNItems] :: GoogleISBN -> [Book]
+ Google.ISBN: [googleISBNTotalItems] :: GoogleISBN -> Integer
Files
- google-isbn.cabal +2/−2
- src/Google/ISBN.hs +2/−2
google-isbn.cabal view
@@ -2,10 +2,10 @@ -- -- see: https://github.com/sol/hpack ----- hash: 0202f3a2dea5a9717b5afad325fb888ee6b8504f6c4c528871c6ccbebc5e5817+-- hash: f555cf18c6f53f5e6b0d34c4a34655d7431c535b1f7421adf7ccd6d8dc2fb2b1 name: google-isbn-version: 0.2+version: 0.3 description: Basic utility to search an ISBN using the Google Books webservice category: Text, Web homepage: https://github.com/apeyroux/google-isbn#readme
src/Google/ISBN.hs view
@@ -11,8 +11,8 @@ module Google.ISBN ( ISBN- , GoogleISBN- , Book+ , GoogleISBN (..)+ , Book (..) , googleISBN ) where