Skip to content

Commit ab5925a

Browse files
committed
Release 0.3.5
1 parent 254075a commit ab5925a

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

Readme.md

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

1616
```clojure
17-
[clj-http "0.3.4"]
17+
[clj-http "0.3.5"]
1818
```
1919

2020
Previous versions available as
2121

2222
```clojure
23+
[clj-http "0.3.4"]
2324
[clj-http "0.3.3"]
2425
[clj-http "0.3.2"]
25-
[clj-http "0.3.1"]
2626
```
2727

2828
## Usage
@@ -271,6 +271,9 @@ Note that if you exclude cheshire, json decoding of response bodies
271271
and json encoding of form-params cannot happen, you are responsible
272272
for your own encoding/decoding.
273273

274+
As of clj-http 0.3.5, you should no longer see this, as Cheshire 3.1.0
275+
and clj-json can now live together without causing problems.
276+
274277
### clj-http-lite
275278

276279
Like clj-http but need something more lightweight without as many

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.3.5-SNAPSHOT"
1+
(defproject clj-http "0.3.5"
22
:description "A Clojure HTTP library wrapping the Apache HttpComponents client."
33
:url "https://github.com/dakrone/clj-http/"
44
:repositories {"sona" "http://oss.sonatype.org/content/repositories/snapshots"}
@@ -10,7 +10,7 @@
1010
[commons-codec "1.5"]
1111
[commons-io "2.1"]
1212
[slingshot "0.10.2"]
13-
[cheshire "3.0.0"]]
13+
[cheshire "3.1.0"]]
1414
:profiles {:dev {:dependencies [[ring/ring-jetty-adapter "1.0.2"]
1515
[ring/ring-devel "1.0.2"]]}
1616
:1.2 {:dependencies [[org.clojure/clojure "1.2.1"]]}

0 commit comments

Comments
 (0)