Skip to content

Commit 94fc8f7

Browse files
committed
Release 0.7.6
1 parent ede1a89 commit 94fc8f7

File tree

4 files changed

+14
-3
lines changed

4 files changed

+14
-3
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,3 +29,4 @@ aws.clj
2929
docs/*
3030
doc
3131
pom.xml.asc
32+
http.log

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.7.5"]
19+
[clj-http "0.7.6"]
2020
```
2121

2222
Previous versions available as
2323

2424
```clojure
25+
[clj-http "0.7.5"]
2526
[clj-http "0.7.4"]
2627
[clj-http "0.7.3"]
27-
[clj-http "0.7.2"]
2828
```
2929

3030
## Usage

changelog.org

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
* Changelog
22
List of user-visible changes that have gone into each release
3+
** 0.7.6
4+
- add logging config for local testing only
5+
- remove "content-encoding" header if the body is automatically
6+
decompressed to allow for pass-through. If header is removed,
7+
assoc :orig-content-encoding to response map.
8+
- merged https://github.com/dakrone/clj-http/pull/149 to fix
9+
closing the stream when coerced to byte array
10+
- merged https://github.com/dakrone/clj-http/pull/146 to correctly
11+
reference parameter names
312
** 0.7.5
413
- Only redirect if a "location" header is actually, present, avoiding an
514
NPE in the event it's missing. (fixes #145)
@@ -308,6 +317,7 @@
308317
* Work log
309318
Log of merges/issues/work that's gone in so I know what to put in
310319
the changelog for the next release
320+
** Released 0.7.6
311321
** 2013-07-23
312322
- add logging config for local testing only
313323
- remove "content-encoding" header if the body is automatically

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.6-SNAPSHOT"
1+
(defproject clj-http "0.7.6"
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)