File tree Expand file tree Collapse file tree 3 files changed +14
-5
lines changed Expand file tree Collapse file tree 3 files changed +14
-5
lines changed Original file line number Diff line number Diff line change @@ -47,12 +47,13 @@ or open an issue if you have any problems.
4747=clj-http= is available as a Maven artifact from [[http://clojars.org/clj-http][Clojars]]:
4848
4949#+BEGIN_SRC clojure
50- [clj-http "1.1.1 "]
50+ [clj-http "1.1.2 "]
5151#+END_SRC
5252
5353Previous versions available as
5454
5555#+BEGIN_SRC clojure
56+ [clj-http "1.1.1"]
5657[clj-http "1.1.0"]
5758[clj-http "1.0.1"]
5859[clj-http "1.0.1"]
Original file line number Diff line number Diff line change 99
1010* Changelog
1111List of user-visible changes that have gone into each release
12+
13+ ** 1.1.2
14+ - bumped dependencies for transit-clj and tools.reader
15+ - merge https://github.com/dakrone/clj-http/pull/263 to only decode body headers
16+ when the content-type is either missing or starts with "text"
1217** 1.1.1
1318- merge https://github.com/dakrone/clj-http/pull/262 to prevent
1419 NullPointerException when decoding body headers with HEAD requests
@@ -95,6 +100,9 @@ List of user-visible changes that have gone into each release
95100 and clean up whitespace for new clojure-mode
96101- Merged https://github.com/dakrone/clj-http/pull/171 to support SOCKS proxies
97102* Work log
103+ ** Released 1.1.2
104+ ** 2015-05-06
105+ - bumped dependencies for transit-clj and tools.reader
98106** 2015-04-24
99107- merge https://github.com/dakrone/clj-http/pull/263 to only decode body headers
100108 when the content-type is either missing or starts with "text"
Original file line number Diff line number Diff line change 1- (defproject clj-http " 1.1.2-SNAPSHOT "
1+ (defproject clj-http " 1.1.2"
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"
1212 [org.apache.httpcomponents/httpmime " 4.4.1" ]
1313 [commons-codec " 1.10" ]
1414 [commons-io " 2.4" ]
15- [com.cognitect/transit-clj " 0.8.269 " ]
15+ [com.cognitect/transit-clj " 0.8.271 " ]
1616 [slingshot " 0.12.2" ]
1717 [cheshire " 5.4.0" ]
1818 [crouton " 0.1.2" ]
19- [org.clojure/tools.reader " 0.9.0 " ]
19+ [org.clojure/tools.reader " 0.9.2 " ]
2020 [potemkin " 0.3.13" ]]
2121 :profiles {:dev {:dependencies [[org.clojure/clojure " 1.6.0" ]
2222 [org.clojure/tools.logging " 0.3.1" ]
2323 [log4j " 1.2.17" ]
2424 [ring/ring-jetty-adapter " 1.3.2" ]
2525 [ring/ring-devel " 1.3.2" ]]}
2626 :1.5 {:dependencies [[org.clojure/clojure " 1.5.1" ]]}
27- :1.7 {:dependencies [[org.clojure/clojure " 1.7.0-alpha5 " ]]}}
27+ :1.7 {:dependencies [[org.clojure/clojure " 1.7.0-alpha6 " ]]}}
2828 :aliases {" all" [" with-profile" " dev,1.5:dev:dev,1.7" ]}
2929 :plugins [[codox " 0.6.4" ]]
3030 :test-selectors {:default #(not (:integration %))
You can’t perform that action at this time.
0 commit comments