json-api-lib 0.1.1.1 → 0.1.2.0
raw patch · 3 files changed
+6/−8 lines, 3 filessetup-changedPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
+ Network.JSONApi.Document: Document :: ResourceData a -> Maybe Links -> Maybe Meta -> [Value] -> Document a
+ Network.JSONApi.Document: [_data] :: Document a -> ResourceData a
+ Network.JSONApi.Document: [_included] :: Document a -> [Value]
+ Network.JSONApi.Document: [_links] :: Document a -> Maybe Links
+ Network.JSONApi.Document: [_meta] :: Document a -> Maybe Meta
Files
- Setup.hs +0/−2
- json-api-lib.cabal +5/−5
- src/Network/JSONApi/Document.hs +1/−1
− Setup.hs
@@ -1,2 +0,0 @@-import Distribution.Simple-main = defaultMain
json-api-lib.cabal view
@@ -1,7 +1,7 @@ cabal-version: 2.0 name: json-api-lib-version: 0.1.1.1+version: 0.1.2.0 homepage: https://github.com/shirren/json-api-lib bug-reports: https://github.com/shirren/json-api-lib/issues license: MIT@@ -26,8 +26,8 @@ , base >= 4.11 && < 5 , containers >= 0.6.1 && < 0.7 , data-default >= 0.7.1 && < 0.8- , lens >= 4.17.1 && < 4.18- , lens-aeson >= 1.0.2 && < 1.1+ , lens >= 4.17.1 && < 4.19+ , lens-aeson >= 1.0.2 && < 1.2 , text >= 1.2.3.1 && < 1.3 , unordered-containers >= 0.2.10 && < 0.3 , uri-encode >= 1.5.0 && < 1.6@@ -70,8 +70,8 @@ , data-default >= 0.7.1 && < 0.8 , hspec >= 2.7.1 && < 2.8 , json-api-lib- , lens >= 4.17.1 && < 4.18- , lens-aeson >= 1.0.2 && < 1.1+ , lens >= 4.17.1 && < 4.19+ , lens-aeson >= 1.0.2 && < 1.2 , text >= 1.2.3.1 && < 1.3 , unordered-containers >= 0.2.10 && < 0.3 , uri-encode >= 1.5.0 && < 1.6
src/Network/JSONApi/Document.hs view
@@ -2,7 +2,7 @@ Contains representations of the top-level JSON-API document structure. -} module Network.JSONApi.Document- ( Document+ ( Document (..) , ResourceData (..) , ErrorDocument (..) , Included