Skip to content

Commit

Permalink
Next development cycle.
Browse files Browse the repository at this point in the history
  • Loading branch information
neotyk committed Apr 30, 2012
1 parent c2445bc commit 8adb137
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"
:description "Your project description"
:dependencies [[org.clojure/clojure "1.4.0"]
[http.async.client "0.4.4"]])
[http.async.client "0.4.5-SNAPSHOT"]])
```

Require:
Expand Down
2 changes: 2 additions & 0 deletions changelog.org
Expand Up @@ -3,6 +3,8 @@
#+EMAIL: hubert@happyhacking.nl
#+SETUPFILE: setup.org

* Release 0.4.5
** Listen to what kibit has to say
* Release 0.4.4
** Simplified callbacks API
Issue [[https://github.com/neotyk/http.async.client/issues/32][#32]].
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.4.0"]
[http.async.client "0.4.4"]])
[http.async.client "0.4.5-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.4.0"]
[http.async.client "0.4.4"]])
[http.async.client "0.4.5-SNAPSHOT"]])
#+END_SRC

Require:
Expand Down
2 changes: 1 addition & 1 deletion project.clj
@@ -1,4 +1,4 @@
(defproject http.async.client "0.4.4"
(defproject http.async.client "0.4.5-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.4-dev")
(def ^:dynamic *user-agent* "http.async.client/0.4.5-dev")

(def ^:dynamic *CLIENT* nil)

Expand Down

0 comments on commit 8adb137

Please sign in to comment.