google-isbn 1.0.0 → 1.0.1
raw patch · 3 files changed
+12/−3 lines, 3 filesPVP: major bump suggested
API removals or changes: PVP suggests a major version bump
API changes (from Hackage documentation)
- Google.ISBN: data ISBN
+ Google.ISBN: ISBN :: Text -> ISBN
+ Google.ISBN: newtype ISBN
+ Main: main :: IO ()
Files
- google-isbn.cabal +3/−2
- src/Google/ISBN.hs +1/−1
- src/Main.hs +8/−0
google-isbn.cabal view
@@ -2,10 +2,10 @@ -- -- see: https://github.com/sol/hpack ----- hash: 1e1e64f60e4f08b7103b3d444a76b6af01b0f53da482e070e9a65de401bd499a+-- hash: da24bcfc0b9e1213e062884e57d60ff7c9cfd60753d980885e890bebd3b1b9f2 name: google-isbn-version: 1.0.0+version: 1.0.1 description: Basic utility to search an ISBN using the Google Books webservice category: Text, Web homepage: https://github.com/apeyroux/google-isbn#readme@@ -23,6 +23,7 @@ library exposed-modules: Google.ISBN+ Main other-modules: Paths_google_isbn hs-source-dirs:
src/Google/ISBN.hs view
@@ -10,7 +10,7 @@ -- module Google.ISBN (- ISBN+ ISBN (..) , GoogleISBN (..) , Book (..) , googleISBN
+ src/Main.hs view
@@ -0,0 +1,8 @@+{-# LANGUAGE OverloadedStrings #-}++module Main where++import Google.ISBN++main :: IO ()+main = googleISBN (ISBN "ok") >>= print