packages feed

handa-gdata 0.7.0.2 → 0.7.0.3

raw patch · 2 files changed

+10/−11 lines, 2 filesdep ~timePVP ok

version bump matches the API change (PVP)

Dependency ranges changed: time

API changes (from Hackage documentation)

Files

handa-gdata.cabal view
@@ -1,5 +1,5 @@ name: handa-gdata-version: 0.7.0.2+version: 0.7.0.3 cabal-version: >=1.6  -- CHANGELOG:@@ -9,6 +9,7 @@ -- 0.6.9.2: Add FusionTables.tableSelect -- 0.6.9.3: tableSQLQuery -- 0.7: change the API for http-conduit 2.0+ support+-- 0.7.0.3: Minor change for GHC 7.10 and time-1.5  build-type: Simple license: MIT@@ -78,13 +79,13 @@ category: Network author: Brian W Bush <b.w.bush@acm.org>, Ryan Newton <rrnewton@indiana.edu> data-dir: ""- + source-repository head --    type: mercurial --    location: https://code.google.com/p/hgdata/     type: git     location: https://github.com/rrnewton/hgdata- + library     build-depends: base              >= 4 && < 5                  , base64-bytestring >= 0.9.1.4@@ -107,7 +108,7 @@                  , regex-posix       >= 0.95.2                  , resourcet         >= 1.1.3                  , split             >= 0.2.0.0-                 , time              -any+                 , time              >= 1.5                  , unix-compat       -any                  , utf8-string       -any                  , xml               >= 1.2.6@@ -126,9 +127,9 @@     exposed: True     buildable: True     hs-source-dirs: src- + executable hgdata-    build-depends: base              >= 4 && < 5 +    build-depends: base              >= 4 && < 5                  , base64-bytestring >= 0.9.1.4                  , binary            >= 0.5.1.1                  , bytestring        >= 0.10.0.2@@ -140,7 +141,7 @@                  , HTTP              >= 4000.2.5                  , http-conduit      >= 2                  , json              >= 0.5-                 , network           >= 2.5.0.0 +                 , network           >= 2.5.0.0                  , old-locale        -any                  , pretty            -any                  , process           >= 1.1.0.2@@ -149,7 +150,7 @@                  , regex-posix       >= 0.95.2                  , resourcet         >= 1.1.3                  , split             >= 0.2.0.0-                 , time              -any+                 , time              >= 1.5                  , unix-compat       -any                  , utf8-string       -any                  , xml               >= 1.2.6@@ -168,4 +169,3 @@                    Network.Google.Storage                    Network.Google.Storage.Encrypted                    Network.Google.Storage.Sync- 
src/Network/Google/Storage/Sync.hs view
@@ -33,7 +33,7 @@ import Data.Maybe (catMaybes, fromJust, fromMaybe, mapMaybe) import Data.Time.Clock (UTCTime, addUTCTime, getCurrentTime) import Data.Time.Clock.POSIX (posixSecondsToUTCTime)-import Data.Time.Format (parseTime)+import Data.Time.Format (parseTime, defaultTimeLocale) import Network.Google (AccessToken, ProjectId, toAccessToken) import Network.Google.OAuth2 (OAuth2Client(..), OAuth2Tokens(..), refreshTokens, validateTokens) import Network.Google.Storage (BucketName, KeyName, MIMEType, StorageAcl, deleteObjectUsingManager, getBucketUsingManager, putObjectUsingManager)@@ -43,7 +43,6 @@ import System.FilePath (combine, splitDirectories) import System.FilePath.Posix (joinPath) import System.IO (hFlush, stdout)-import System.Locale (defaultTimeLocale) import System.PosixCompat.Files (fileSize, getFileStatus, getSymbolicLinkStatus, isSymbolicLink, modificationTime) import Text.Regex.Posix ((=~)) import Text.XML.Light (Element, QName(qName), filterChildrenName, filterChildName, ppTopElement, strContent)