From ccc316b6c31548e0eb1d8b0d51e7e83c74fc8735 Mon Sep 17 00:00:00 2001 From: Lee Hinman Date: Thu, 11 Apr 2024 11:07:18 -0600 Subject: [PATCH] Bump to 3.12.5-SNAPSHOT and update readme --- README.org | 5 ++++- project.clj | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/README.org b/README.org index 3235b2eb..f14cf347 100644 --- a/README.org +++ b/README.org @@ -119,7 +119,7 @@ function. With Leiningen/Boot: #+BEGIN_SRC clojure -[clj-http "3.12.3"] +[clj-http "3.12.4"] #+END_SRC If you need an older version, a 2.x release is also available. @@ -1444,6 +1444,9 @@ In previous versions of =clj-http= (<= 3.10.0), =clj-http= defaulted to lazily p was slow and also confused users who didn't expect laziness. ** DNS Resolution +:PROPERTIES: +:CUSTOM_ID: h:52CC15DF-57A5-425E-9AFC-10C9B4C4FA83 +:END: Users may add their own DNS resolver function to override the default DNS Resolver. This is useful in situations where you are unable to change the name to IP Address mapping. It is analogous to the =--resolve= flag present in =curl=. This example uses =org.apache.http.impl.conn.InMemoryDnsResolver= to resolve =example.com= to IP Address =127.0.0.1=. diff --git a/project.clj b/project.clj index 6589b87f..d35c7f0b 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject clj-http "3.12.4" +(defproject clj-http "3.12.5-SNAPSHOT" :description "A Clojure HTTP library wrapping the Apache HttpComponents client." :url "https://github.com/dakrone/clj-http/" :license {:name "The MIT License"