Skip to content

Commit 82d16d8

Browse files
committed
Release 0.6.4
1 parent 75baa7a commit 82d16d8

File tree

3 files changed

+19
-3
lines changed

3 files changed

+19
-3
lines changed

Readme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@ pull request or open an issue if you have any problems
1616
[Clojars](http://clojars.org/clj-http):
1717

1818
```clojure
19-
[clj-http "0.6.3"]
19+
[clj-http "0.6.4"]
2020
```
2121

2222
Previous versions available as
2323

2424
```clojure
25+
[clj-http "0.6.3"]
2526
[clj-http "0.6.2"]
2627
[clj-http "0.6.1"]
27-
[clj-http "0.6.0"]
2828
```
2929

3030
## Usage

changelog.org

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
* Changelog
22
List of user-visible changes that have gone into each release
3+
** 0.6.4
4+
- merged https://github.com/dakrone/clj-http/pull/113 to update
5+
the connection pooling code
6+
- refactor pooled connection managers to allow specifying
7+
the :connection-manager option
8+
- merged https://github.com/dakrone/clj-http/pull/112 to allow
9+
json coercion on error responses when :as :auto is used
10+
- allow redirects when :url is not set in the request
11+
- merged https://github.com/dakrone/clj-http/pull/110 to handle the
12+
case when the server-side uses deflate incorrectly
13+
- added `with-middleware` to allow running requests with a custom
14+
middleware list
15+
- added `all-middleware` var listing all the wrap-* middleware that
16+
clj-http knows of
17+
- clj-http.client/request is now marked as dynamic for rebinding
318
** 0.6.3
419
- Remove wrap-cookie-store middleware, CookieStore headers are
520
automatically added by Apache
@@ -232,6 +247,7 @@
232247
* Work log
233248
Log of merges/issues/work that's gone in so I know what to put in
234249
the changelog for the next release
250+
** Released 0.6.4
235251
** 2012-01-30
236252
- merged https://github.com/dakrone/clj-http/pull/113 to update
237253
the connection pooling code

project.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject clj-http "0.6.4-SNAPSHOT"
1+
(defproject clj-http "0.6.4"
22
:description "A Clojure HTTP library wrapping the Apache HttpComponents client."
33
:url "https://github.com/dakrone/clj-http/"
44
:license {:name "The MIT License"

0 commit comments

Comments
 (0)