Skip to content

Commit ed7df5f

Browse files
committed
Release 0.7.3
1 parent 63e9faa commit ed7df5f

File tree

3 files changed

+20
-4
lines changed

3 files changed

+20
-4
lines changed

Readme.md

Lines changed: 5 additions & 3 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.7.2"]
19+
[clj-http "0.7.3"]
2020
```
2121

2222
Previous versions available as
2323

2424
```clojure
25+
[clj-http "0.7.2"]
2526
[clj-http "0.7.1"]
2627
[clj-http "0.7.0"]
27-
[clj-http "0.6.5"]
2828
```
2929

3030
## Usage
@@ -522,7 +522,9 @@ functionality:
522522

523523
To see available middleware, check the
524524
`clj-http.client/default-middleware` var, which is a vector of the
525-
default middleware that clj-http uses.
525+
default middleware that clj-http
526+
uses. `clj-http.client/*current-middleware*` is bound to the current
527+
list of middleware during request time.
526528

527529
## Debugging
528530

changelog.org

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
* Changelog
22
List of user-visible changes that have gone into each release
3+
** 0.7.3
4+
- correctly close single client connection manager if {:as :stream} is used, fixes #142
5+
- merged https://github.com/dakrone/clj-http/pull/138 to preserve
6+
http method for 307 redirect
7+
- merged in parse-url parameters into follow-redirect so request
8+
map is not inconsistent
9+
- bumped http* deps to 4.2.5
10+
- fixed cookie compact-map not to remove falsey values, only nil
11+
ones
12+
- merged https://github.com/dakrone/clj-http/pull/135 to fix
13+
discard always defaulting to true
14+
- add *current-middleware* to see available middleware during a
15+
with-middleware request (for nesting)
316
** 0.7.2
417
- merged https://github.com/dakrone/clj-http/pull/127 to allow
518
custom cookie policies
@@ -286,6 +299,7 @@
286299
* Work log
287300
Log of merges/issues/work that's gone in so I know what to put in
288301
the changelog for the next release
302+
** Released 0.7.3
289303
** 2013-06-22
290304
- correctly close single client connection manager if {:as :stream} is used, fixes #142
291305
** 2013-05-02

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.7.3-SNAPSHOT"
1+
(defproject clj-http "0.7.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"

0 commit comments

Comments
 (0)