Skip to content

Commit

Permalink
Release v0.4.5.
Browse files Browse the repository at this point in the history
  • Loading branch information
neotyk committed May 6, 2012
1 parent b0d9349 commit 8ea2232
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.markdown
Expand Up @@ -11,7 +11,7 @@ Declare dependency:
(defproject your-project "1.0.0-SNAPSHOT" (defproject your-project "1.0.0-SNAPSHOT"
:description "Your project description" :description "Your project description"
:dependencies [[org.clojure/clojure "1.4.0"] :dependencies [[org.clojure/clojure "1.4.0"]
[http.async.client "0.4.5-SNAPSHOT"]]) [http.async.client "0.4.5"]])
``` ```


Require: Require:
Expand Down
2 changes: 2 additions & 0 deletions changelog.org
Expand Up @@ -8,6 +8,8 @@
Allow POST and PUT to send multipart messages. Allow POST and PUT to send multipart messages.
When *vector* is provided as body it is treated as multipart. When *vector* is provided as body it is treated as multipart.
Please consult documentation and tests for examples of usage. Please consult documentation and tests for examples of usage.
** Add convenience url and raw-url
[[https://github.com/neotyk/http.async.client/issues/35][#35]]. Allow easy retrieval of URL used to request resource.
** There's a function for that! ** There's a function for that!
Listen to what kibit has to say. Listen to what kibit has to say.
* Release 0.4.4 * Release 0.4.4
Expand Down
2 changes: 1 addition & 1 deletion docs.org
Expand Up @@ -11,7 +11,7 @@
(defproject your-project "1.0.0-SNAPSHOT" (defproject your-project "1.0.0-SNAPSHOT"
:description "Your project description" :description "Your project description"
:dependencies [[org.clojure/clojure "1.4.0"] :dependencies [[org.clojure/clojure "1.4.0"]
[http.async.client "0.4.5-SNAPSHOT"]]) [http.async.client "0.4.5"]])
#+END_SRC #+END_SRC
Make sure that your project depends on at least 1.3.0 Clojure as Make sure that your project depends on at least 1.3.0 Clojure as
*http.async.client* will not run in earlier versions. *http.async.client* will not run in earlier versions.
Expand Down
2 changes: 1 addition & 1 deletion index.org
Expand Up @@ -12,7 +12,7 @@
(defproject your-project "1.0.0-SNAPSHOT" (defproject your-project "1.0.0-SNAPSHOT"
:description "Your project description" :description "Your project description"
:dependencies [[org.clojure/clojure "1.4.0"] :dependencies [[org.clojure/clojure "1.4.0"]
[http.async.client "0.4.5-SNAPSHOT"]]) [http.async.client "0.4.5"]])
#+END_SRC #+END_SRC


Require: Require:
Expand Down
2 changes: 1 addition & 1 deletion project.clj
@@ -1,4 +1,4 @@
(defproject http.async.client "0.4.5-SNAPSHOT" (defproject http.async.client "0.4.5"
:name "http.async.client" :name "http.async.client"
:description "Asynchronous HTTP Client for Clojure" :description "Asynchronous HTTP Client for Clojure"
:url "http://neotyk.github.com/http.async.client/" :url "http://neotyk.github.com/http.async.client/"
Expand Down
2 changes: 1 addition & 1 deletion src/clj/http/async/client/request.clj
Expand Up @@ -32,7 +32,7 @@
ByteArrayInputStream ByteArrayInputStream
ByteArrayOutputStream))) ByteArrayOutputStream)))


(def ^:dynamic *user-agent* "http.async.client/0.4.5-dev") (def ^:dynamic *user-agent* "http.async.client/0.4.5")


(def ^:dynamic *CLIENT* nil) (def ^:dynamic *CLIENT* nil)


Expand Down

0 comments on commit 8ea2232

Please sign in to comment.