diff --git a/README.markdown b/README.markdown index 8572ecc..d128ce3 100644 --- a/README.markdown +++ b/README.markdown @@ -11,7 +11,7 @@ Declare dependency: (defproject your-project "1.0.0-SNAPSHOT" :description "Your project description" :dependencies [[org.clojure/clojure "1.3.0"] - [http.async.client "0.4.2"]]) + [http.async.client "0.4.3"]]) ``` Require: diff --git a/docs.org b/docs.org index 94ee0c2..ca29d81 100644 --- a/docs.org +++ b/docs.org @@ -11,7 +11,7 @@ (defproject your-project "1.0.0-SNAPSHOT" :description "Your project description" :dependencies [[org.clojure/clojure "1.3.0"] - [http.async.client "0.4.2"]]) + [http.async.client "0.4.3"]]) #+END_SRC Make sure that your project depends on at least 1.3.0 Clojure as *http.async.client* will not run in earlier versions. diff --git a/index.org b/index.org index cd0bbd6..02ab072 100644 --- a/index.org +++ b/index.org @@ -12,7 +12,7 @@ (defproject your-project "1.0.0-SNAPSHOT" :description "Your project description" :dependencies [[org.clojure/clojure "1.3.0"] - [http.async.client "0.4.2"]]) + [http.async.client "0.4.3"]]) #+END_SRC Require: diff --git a/project.clj b/project.clj index 653a413..4c7a9a2 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject http.async.client "0.4.3-SNAPSHOT" +(defproject http.async.client "0.4.3" :name "http.async.client" :description "Asynchronous HTTP Client for Clojure" :url "http://neotyk.github.com/http.async.client/" diff --git a/src/clj/http/async/client/request.clj b/src/clj/http/async/client/request.clj index eb27d8e..44e7a30 100644 --- a/src/clj/http/async/client/request.clj +++ b/src/clj/http/async/client/request.clj @@ -32,7 +32,7 @@ ByteArrayInputStream ByteArrayOutputStream))) -(def ^:dynamic *user-agent* "http.async.client/0.4.2-dev") +(def ^:dynamic *user-agent* "http.async.client/0.4.3") (def ^:dynamic *CLIENT* nil)