Bumped the dependency on clj-oauth

This commit is contained in:
Adam Wynne 2012-04-19 12:29:01 +01:00
parent ca65ce7c47
commit d86e6b99a3
3 changed files with 4 additions and 4 deletions

View file

@ -20,7 +20,7 @@ This is an up-to-date twitter API wrapper that is based on the clojure http.asyn
Just add the following to your project.clj file in the _dependencies_ section:
```
[twitter-api "0.6.8"]
[twitter-api "0.6.9"]
```
## Examples

View file

@ -1,8 +1,8 @@
(defproject twitter-api/twitter-api "0.6.8"
(defproject twitter-api/twitter-api "0.6.9"
:description "full twitter interface"
:plugins [[lein-clojars "0.7.0"]
[lein-swank "1.4.4"]]
:dependencies [[org.clojure/clojure "1.3.0"]
[org.clojure/data.json "0.1.1"]
[org.clojars.adamwynne/http.async.client "0.4.1"]
[org.clojars.adamwynne/clj-oauth "1.2.12"]])
[org.clojars.adamwynne/clj-oauth "1.2.13"]])

View file

@ -7,7 +7,7 @@
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defrecord OauthCredentials
(defrecord OauthCredentials
[consumer
#^String access-token
#^String access-token-secret])