Skip to content

Commit b7f1450

Browse files
committed
Release 0.6.1
1 parent 240ac4e commit b7f1450

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

2222
Previous versions available as
2323

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

3030
## Usage

changelog.org

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
* Changelog
22
List of user-visible changes that have gone into each release
3+
** 0.6.1
4+
- bump httpcore to 4.2.3
5+
- Fix an issue (#105) related to the "Content-Length" header being
6+
automatically added to GET requests
37
** 0.6.0
48
(bumped to 0.6.0 since Cheshire has changed major versions)
59
- Update Cheshire to 5.0.1
@@ -217,6 +221,9 @@
217221
* Work log
218222
Log of merges/issues/work that's gone in so I know what to put in
219223
the changelog for the next release
224+
** Released 0.6.1
225+
** 2012-12-11
226+
- bump httpcore to 4.2.3
220227
** 2012-12-10
221228
- Fix an issue (#105) related to the "Content-Length" header being
222229
automatically added to GET requests

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.1-SNAPSHOT"
1+
(defproject clj-http "0.6.1"
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"
@@ -7,7 +7,7 @@
77
:repositories {"sona" "http://oss.sonatype.org/content/repositories/snapshots"}
88
:warn-on-reflection false
99
:min-lein-version "2.0.0"
10-
:dependencies [[org.apache.httpcomponents/httpcore "4.2.2"]
10+
:dependencies [[org.apache.httpcomponents/httpcore "4.2.3"]
1111
[org.apache.httpcomponents/httpclient "4.2.2"]
1212
[org.apache.httpcomponents/httpmime "4.2.2"]
1313
[commons-codec "1.6"]

0 commit comments

Comments
 (0)