Skip to content
This repository was archived by the owner on Dec 1, 2023. It is now read-only.

Commit b5dcbee

Browse files
committed
Release 0.6.3
1 parent 7d2bacb commit b5dcbee

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
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.2"]
19+
[clj-http "0.6.3"]
2020
```
2121

2222
Previous versions available as
2323

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

3030
## Usage

changelog.org

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
* Changelog
22
List of user-visible changes that have gone into each release
3+
** 0.6.3
4+
- Remove wrap-cookie-store middleware, CookieStore headers are
5+
automatically added by Apache
6+
- set the SINGLE_COOKIE_HEADER value to true to ensure Apache sends
7+
only one "Cookie:" header
8+
- Do not add CookieStore or Cookie header if there are no cookies
9+
in the cookie jar
310
** 0.6.2
411
- merged https://github.com/dakrone/clj-http/pull/106 to remove
512
query params for redirection.

project.clj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject clj-http "0.6.3-SNAPSHOT"
1+
(defproject clj-http "0.6.3"
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"
@@ -20,7 +20,7 @@
2020
[ring/ring-devel "1.1.0"]]}
2121
:1.2 {:dependencies [[org.clojure/clojure "1.2.1"]]}
2222
:1.3 {:dependencies [[org.clojure/clojure "1.3.0"]]}
23-
:1.5 {:dependencies [[org.clojure/clojure "1.5.0-beta1"]]}}
23+
:1.5 {:dependencies [[org.clojure/clojure "1.5.0-beta2"]]}}
2424
:aliases {"all" ["with-profile" "dev,1.2:dev,1.3:dev:1.5,dev"]}
2525
:plugins [[codox "0.6.3"]]
2626
:test-selectors {:default #(not (:integration %))

0 commit comments

Comments
 (0)