diff --git a/ChangeLog.md b/ChangeLog.md
--- a/ChangeLog.md
+++ b/ChangeLog.md
@@ -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
diff --git a/servant-pushbullet-client.cabal b/servant-pushbullet-client.cabal
--- a/servant-pushbullet-client.cabal
+++ b/servant-pushbullet-client.cabal
@@ -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,
diff --git a/src/Network/Pushbullet/Api.hs b/src/Network/Pushbullet/Api.hs
--- a/src/Network/Pushbullet/Api.hs
+++ b/src/Network/Pushbullet/Api.hs
@@ -27,8 +27,8 @@
       :<|>
         QueryParam "modified_after" PushbulletTime
         :> QueryParam "active" Bool
-        :> QueryParam "cursor" Cursor
         :> QueryParam "limit" Int
+        :> QueryParam "cursor" Cursor
         :> Get '[JSON] (Paginated ExistingPushes)
     )
   :<|>
diff --git a/src/Network/Pushbullet/Client.hs b/src/Network/Pushbullet/Client.hs
--- a/src/Network/Pushbullet/Client.hs
+++ b/src/Network/Pushbullet/Client.hs
@@ -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
