servant-pushbullet-client 0.1.0.0 → 0.2.0.0
raw patch · 4 files changed
+10/−6 lines, 4 filesdep ~pushbullet-types
Dependency ranges changed: pushbullet-types
Files
- ChangeLog.md +4/−0
- servant-pushbullet-client.cabal +4/−4
- src/Network/Pushbullet/Api.hs +1/−1
- src/Network/Pushbullet/Client.hs +1/−1
ChangeLog.md view
@@ -1,5 +1,9 @@ # Revision history for servant-pushbullet-client +## 0.2.0.0 -- 2017-04-30++Adjust argument order for a function, so `Cursor` arguments are always last.+ ## 0.1.0.0 -- 2017-02-20 The bulk of the library has been moved into a separate library
servant-pushbullet-client.cabal view
@@ -2,7 +2,7 @@ -- further documentation, see http://haskell.org/cabal/users-guide/ name: servant-pushbullet-client-version: 0.1.0.0+version: 0.2.0.0 synopsis: Bindings to the Pushbullet API using servant-client description: This library describes the Pushbullet API as a type, and uses servant-client@@ -24,8 +24,8 @@ source-repository this type: git- location: https://github.com/tsani/servant-pushbullet-client/releases/tag/v0.1.0.0- tag: v0.1.0.0+ location: https://github.com/tsani/servant-pushbullet-client/releases/tag/v0.2.0.0+ tag: v0.2.0.0 library exposed-modules:@@ -48,7 +48,7 @@ TypeFamilies TypeApplications build-depends:- pushbullet-types >=0.1 && <0.2,+ pushbullet-types >=0.2 && <0.3, aeson >=0.11 && <1.1, base >=4.9 && <4.10,
src/Network/Pushbullet/Api.hs view
@@ -27,8 +27,8 @@ :<|> QueryParam "modified_after" PushbulletTime :> QueryParam "active" Bool- :> QueryParam "cursor" Cursor :> QueryParam "limit" Int+ :> QueryParam "cursor" Cursor :> Get '[JSON] (Paginated ExistingPushes) ) :<|>
src/Network/Pushbullet/Client.hs view
@@ -19,8 +19,8 @@ :: Auth -> Maybe PushbulletTime -> Maybe Bool- -> Maybe Cursor -> Maybe Int+ -> Maybe Cursor -> ClientM (Paginated ExistingPushes) createEphemeral :: Auth -> Ephemeral -> ClientM TrivialObject getMe :: Auth -> ClientM User