github 0.7.3 → 0.7.4
raw patch · 3 files changed
+7/−8 lines, 3 files
Files
- Github/Data.hs +1/−2
- Github/Private.hs +1/−1
- github.cabal +5/−5
Github/Data.hs view
@@ -535,8 +535,7 @@ parseJSON $ Array $ V.fromList $ Map.elems children -- | Produce the value for the last key by traversing.-(<.:>) :: (FromJSON v, Monoid v) => Object => [T.Text] -> Parser v-_obj <.:> [] = pure mempty+(<.:>) :: (FromJSON v) => Object -> [T.Text] -> Parser v obj <.:> [key] = obj .: key obj <.:> (key:keys) = let (Object nextObj) = findWithDefault (Object Map.empty) key obj in
Github/Private.hs view
@@ -116,7 +116,7 @@ , port = 443 , requestBody = reqBody , requestHeaders = reqHeaders <>- [("User-Agent", "github.hs/0.7.0")]+ [("User-Agent", "github.hs/0.7.4")] <> [("Accept", "application/vnd.github.preview")] , checkStatus = successOrMissing }
github.cabal view
@@ -7,7 +7,7 @@ -- The package version. See the Haskell package versioning policy -- (http://www.haskell.org/haskellwiki/Package_versioning_policy) for -- standards guiding when and how versions should be incremented.-Version: 0.7.3+Version: 0.7.4 -- A short (one-line) description of the package. Synopsis: Access to the Github API, v3.@@ -159,11 +159,11 @@ data-default, vector, unordered-containers >= 0.2 && < 0.3- + -- Modules not exported by this package. Other-modules: Github.Private- + -- Extra tools (e.g. alex, hsc2hs, ...) needed to build the source.- -- Build-tools: - + -- Build-tools:+ GHC-Options: -Wall -fno-warn-orphans