Skip to content

Commit a01a6ea

Browse files
committed
v0.4.20
1 parent 5c2986d commit a01a6ea

File tree

4 files changed

+11
-6
lines changed

4 files changed

+11
-6
lines changed

CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# Changelog
22

3-
Babashka [http-client](https://github.com/babashka/http-client): HTTP client for Clojure and babashka built on java.net.http
3+
Babashka [http-client](https://github.com/babashka/http-client): HTTP client for Clojure and babashka built on java.net.http
44

5-
## Unreleased
5+
## 0.4.20
66

7-
- [#60](https://github.com/babashka/http-client/issues/60): Minimum Clojure version is now 1.10
7+
- [#60](https://github.com/babashka/http-client/issues/60): Minimum Clojure version is now 1.10 instead of 1.11
88
([@lread](https://github.com/lread))
99

1010
## 0.4.19 (2024-04-24)

deps.edn

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,17 @@
11
{:deps {}
22
:aliases
33
{:neil {:project {:name org.babashka/http-client
4-
:version "0.4.19"}}
4+
:version "0.4.20"}}
55
:clj-1.10 {:extra-deps {org.clojure/clojure {:mvn/version "1.10.3"}}}
66
:clj-1.11 {:extra-deps {org.clojure/clojure {:mvn/version "1.11.4"}}}
77
:clj-1.12 {:extra-deps {org.clojure/clojure {:mvn/version "1.12.0-rc1"}}}
88

99
:repl {:extra-deps {cheshire/cheshire {:mvn/version "5.11.0"}
1010
io.github.borkdude/deflet {:mvn/version "0.1.0"}
11-
babashka/fs {:mvn/version "0.2.16"}}}
11+
babashka/fs {:mvn/version "0.2.16"}}
12+
:extra-paths ["dev"]}
1213
:test ;; added by neil
13-
{:extra-paths ["test"]
14+
{:extra-paths ["dev" "test"]
1415
:extra-deps {cheshire/cheshire {:mvn/version "5.11.0"}
1516
io.github.cognitect-labs/test-runner
1617
{:git/tag "v0.5.0" :git/sha "b3fd0d2"}

dev/user.clj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
(println "Toggling warn on reflection to true...")
2+
(alter-var-root #'*warn-on-reflection* (constantly true))

test/babashka/http_client_test.clj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515
[java.net.http HttpRequest$BodyPublishers]
1616
[javax.net.ssl SSLContext]))
1717

18+
(set! *warn-on-reflection* false) ;; only in this test namespace
19+
1820
(def !server (atom nil))
1921

2022
(defn run-server []

0 commit comments

Comments
 (0)