Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Next development cycle.
  • Loading branch information
neotyk committed Feb 29, 2012
1 parent 88790b5 commit a271d4c
Show file tree
Hide file tree
Showing 6 changed files with 6 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"
:description "Your project description"
:dependencies [[org.clojure/clojure "1.3.0"]
[http.async.client "0.4.3"]])
[http.async.client "0.4.4-SNAPSHOT"]])
```

Require:
Expand Down
1 change: 1 addition & 0 deletions changelog.org
Expand Up @@ -3,6 +3,7 @@
#+EMAIL: hubert@happyhacking.nl
#+SETUPFILE: setup.org

* Release 0.4.4
* Release 0.4.3
** Issue [[https://github.com/neotyk/http.async.client/pull/30][#30]] by [[https://github.com/canassa][Cesar Canassa]]
Fixes issue with single cookie in response.
Expand Down
2 changes: 1 addition & 1 deletion docs.org
Expand Up @@ -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.3"]])
[http.async.client "0.4.3-SNAPSHOT"]])
#+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.
Expand Down
2 changes: 1 addition & 1 deletion index.org
Expand Up @@ -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.3"]])
[http.async.client "0.4.4-SNAPSHOT"]])
#+END_SRC

Require:
Expand Down
2 changes: 1 addition & 1 deletion project.clj
@@ -1,4 +1,4 @@
(defproject http.async.client "0.4.3"
(defproject http.async.client "0.4.4-SNAPSHOT"
:name "http.async.client"
:description "Asynchronous HTTP Client for Clojure"
: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
ByteArrayOutputStream)))

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

(def ^:dynamic *CLIENT* nil)

Expand Down

0 comments on commit a271d4c

Please sign in to comment.