VKHS 1.8 → 1.8.1
raw patch · 3 files changed
+6/−6 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- README.md +4/−4
- VKHS.cabal +1/−1
- app/vkq/Main.hs +1/−1
README.md view
@@ -23,8 +23,8 @@ Installing ========== -Installing from Cabal----------------------+Installing from Hackage+----------------------- In order to install VKHS, one typically should do the following @@ -86,7 +86,7 @@ $ export VKQ_ACCESS_TOKEN=d785932b871f096bd73aac6a35d7a7c469dd788d796463a871e5beb5c61bc6c96788ec2 -VKQ may save the access tokein into state file:+VKQ may cache the access tokein into a state file: $ vkq login --access-token-file=.access-token @@ -106,7 +106,7 @@ For example, lets call ausio.search method to get some Beatles records: - $ vkq call audio.search q=Beatles --pretty+ $ vkq call group.search q=Beatles --pretty { "response": [ 614751,
VKHS.cabal view
@@ -1,6 +1,6 @@ name: VKHS-version: 1.8+version: 1.8.1 synopsis: Provides access to Vkontakte social network via public API description: Provides access to Vkontakte API methods. Library requires no interaction
app/vkq/Main.hs view
@@ -98,7 +98,7 @@ <*> switch (long "pretty" <> help "Pretty print resulting JSON"))) ( progDesc "Call VK API method" )) - in subparser (+ in hsubparser ( command "login" (info (Login <$> genericOptions_login <*> (LoginOptions <$> flag False True (long "eval" <> help "Print in shell-friendly format") ))