github 0.7.4 → 0.8
raw patch · 4 files changed
+5/−5 lines, 4 filesdep ~http-conduitdep ~time
Dependency ranges changed: http-conduit, time
Files
- Github/Data.hs +1/−1
- Github/Data/Definitions.hs +2/−2
- Github/Private.hs +1/−1
- github.cabal +1/−1
Github/Data.hs view
@@ -215,7 +215,7 @@ <*> o .:? "assignee" <*> o .: "user" <*> o .: "title"- <*> o .: "pull_request"+ <*> o .:? "pull_request" <*> o .: "url" <*> o .: "created_at" <*> o .: "body"
Github/Data/Definitions.hs view
@@ -193,7 +193,7 @@ ,issueAssignee :: Maybe GithubOwner ,issueUser :: GithubOwner ,issueTitle :: String- ,issuePullRequest :: PullRequestReference+ ,issuePullRequest :: Maybe PullRequestReference ,issueUrl :: String ,issueCreatedAt :: GithubDate ,issueBody :: Maybe String@@ -227,7 +227,7 @@ ,milestoneOpenIssues :: Int ,milestoneNumber :: Int ,milestoneClosedIssues :: Int- ,milestoneDescription :: String+ ,milestoneDescription :: Maybe String ,milestoneTitle :: String ,milestoneUrl :: String ,milestoneCreatedAt :: GithubDate
Github/Private.hs view
@@ -14,7 +14,7 @@ import qualified Data.ByteString.Lazy.Char8 as LBS import Network.HTTP.Types (Method, Status(..)) import Network.HTTP.Conduit-import Data.Conduit (ResourceT)+-- import Data.Conduit (ResourceT) import qualified Control.Exception as E import Data.Maybe (fromMaybe)
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.4+Version: 0.8 -- A short (one-line) description of the package. Synopsis: Access to the Github API, v3.