Skip to content

Commit

Permalink
v0.4.20
Browse files Browse the repository at this point in the history
  • Loading branch information
borkdude committed Aug 13, 2024
1 parent 5c2986d commit a01a6ea
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 6 deletions.
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# Changelog

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

## Unreleased
## 0.4.20

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

## 0.4.19 (2024-04-24)
Expand Down
7 changes: 4 additions & 3 deletions deps.edn
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
{:deps {}
:aliases
{:neil {:project {:name org.babashka/http-client
:version "0.4.19"}}
:version "0.4.20"}}
:clj-1.10 {:extra-deps {org.clojure/clojure {:mvn/version "1.10.3"}}}
:clj-1.11 {:extra-deps {org.clojure/clojure {:mvn/version "1.11.4"}}}
:clj-1.12 {:extra-deps {org.clojure/clojure {:mvn/version "1.12.0-rc1"}}}

:repl {:extra-deps {cheshire/cheshire {:mvn/version "5.11.0"}
io.github.borkdude/deflet {:mvn/version "0.1.0"}
babashka/fs {:mvn/version "0.2.16"}}}
babashka/fs {:mvn/version "0.2.16"}}
:extra-paths ["dev"]}
:test ;; added by neil
{:extra-paths ["test"]
{:extra-paths ["dev" "test"]
:extra-deps {cheshire/cheshire {:mvn/version "5.11.0"}
io.github.cognitect-labs/test-runner
{:git/tag "v0.5.0" :git/sha "b3fd0d2"}
Expand Down
2 changes: 2 additions & 0 deletions dev/user.clj
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
(println "Toggling warn on reflection to true...")
(alter-var-root #'*warn-on-reflection* (constantly true))
2 changes: 2 additions & 0 deletions test/babashka/http_client_test.clj
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@
[java.net.http HttpRequest$BodyPublishers]
[javax.net.ssl SSLContext]))

(set! *warn-on-reflection* false) ;; only in this test namespace

(def !server (atom nil))

(defn run-server []
Expand Down

0 comments on commit a01a6ea

Please sign in to comment.