Skip to content

Commit

Permalink
Release 3.10.1
Browse files Browse the repository at this point in the history
  • Loading branch information
dakrone committed Apr 13, 2020
1 parent 5154fcc commit 54699dd
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
8 changes: 7 additions & 1 deletion README.org
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ function.
With Leiningen/Boot:

#+BEGIN_SRC clojure
[clj-http "3.10.0"]
[clj-http "3.10.1"]
#+END_SRC

If you need an older version, a 2.x release is also available.
Expand Down Expand Up @@ -731,6 +731,9 @@ NOTE: The options =:force-redirects= and =:follow-redirects= (present in clj-htt
used). You can use =:graceful= to mostly emulate the old redirect behaviour.

*** How to create a custom RedirectStrategy
:PROPERTIES:
:CUSTOM_ID: h:a3b8b124-411f-4c4c-ac4b-777624e76bf1
:END:
As mentioned earlier, it's possible to pass a custom instance of RedirectStrategy. The snippet below shows how to create a custom =RedirectStrategy= by wrapping the default strategy.

#+begin_src clojure
Expand Down Expand Up @@ -1400,6 +1403,9 @@ clj-http's =:connection-manager=, =:redirect-strategy=,
=:cookie-spec=, respectively.

** Incrementally JSON Parsing
:PROPERTIES:
:CUSTOM_ID: h:b01c16e8-7179-468e-8890-316939ec0e38
:END:
[[https://github.com/dakrone/cheshire][cheshire]] supports incrementally parsing JSON using lazy sequences. This approach can useful for
processing large top-level JSON arrays because it doesn't require upfront work consuming the entire stream.

Expand Down
2 changes: 1 addition & 1 deletion project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject clj-http "3.10.1-SNAPSHOT"
(defproject clj-http "3.10.1"
:description "A Clojure HTTP library wrapping the Apache HttpComponents client."
:url "https://github.com/dakrone/clj-http/"
:license {:name "The MIT License"
Expand Down

0 comments on commit 54699dd

Please sign in to comment.