From 8ea22327e3b713498925e6e2482ef25c578b9da6 Mon Sep 17 00:00:00 2001 From: Hubert Iwaniuk Date: Sun, 6 May 2012 23:55:46 +0200 Subject: [PATCH] Release v0.4.5. --- README.markdown | 2 +- changelog.org | 2 ++ docs.org | 2 +- index.org | 2 +- project.clj | 2 +- src/clj/http/async/client/request.clj | 2 +- 6 files changed, 7 insertions(+), 5 deletions(-) diff --git a/README.markdown b/README.markdown index bbe6fc0..08d8267 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.4.0"] - [http.async.client "0.4.5-SNAPSHOT"]]) + [http.async.client "0.4.5"]]) ``` Require: diff --git a/changelog.org b/changelog.org index 6d713cb..da50f62 100644 --- a/changelog.org +++ b/changelog.org @@ -8,6 +8,8 @@ Allow POST and PUT to send multipart messages. When *vector* is provided as body it is treated as multipart. 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! Listen to what kibit has to say. * Release 0.4.4 diff --git a/docs.org b/docs.org index 5a6e4d0..56e96ec 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.4.0"] - [http.async.client "0.4.5-SNAPSHOT"]]) + [http.async.client "0.4.5"]]) #+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 8410239..8fe7ae1 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.4.0"] - [http.async.client "0.4.5-SNAPSHOT"]]) + [http.async.client "0.4.5"]]) #+END_SRC Require: diff --git a/project.clj b/project.clj index 818658f..4677aa0 100644 --- a/project.clj +++ b/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" :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 b6ea950..8890de9 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.5-dev") +(def ^:dynamic *user-agent* "http.async.client/0.4.5") (def ^:dynamic *CLIENT* nil)