Skip to content

Commit

Permalink
[nop] Bump deps
Browse files Browse the repository at this point in the history
  • Loading branch information
ptaoussanis committed Jun 5, 2024
1 parent 2666c3d commit b6f529c
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
14 changes: 7 additions & 7 deletions project.clj
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,16 @@
:url "https://www.eclipse.org/legal/epl-v10.html"}

:dependencies
[[com.taoensso/encore "3.31.0"]]
[[com.taoensso/encore "3.112.0"]]

:test-paths ["test" #_"src"]

:profiles
{;; :default [:base :system :user :provided :dev]
:provided {:dependencies [[org.clojure/clojurescript "1.11.60"]
[org.clojure/clojure "1.11.1"]]}
:c1.12 {:dependencies [[org.clojure/clojure "1.12.0-alpha9"]]}
:c1.11 {:dependencies [[org.clojure/clojure "1.11.1"]]}
:provided {:dependencies [[org.clojure/clojurescript "1.11.132"]
[org.clojure/clojure "1.11.3"]]}
:c1.12 {:dependencies [[org.clojure/clojure "1.12.0-alpha12"]]}
:c1.11 {:dependencies [[org.clojure/clojure "1.11.3"]]}
:c1.10 {:dependencies [[org.clojure/clojure "1.10.3"]]}
:c1.9 {:dependencies [[org.clojure/clojure "1.9.0"]]}

Expand All @@ -27,7 +27,7 @@
:aot [taoensso.graal-tests]
:uberjar-name "graal-tests.jar"
:dependencies
[[org.clojure/clojure "1.11.1"]
[[org.clojure/clojure "1.11.3"]
[com.github.clj-easy/graal-build-time "1.0.5"]]}

:dev
Expand All @@ -45,7 +45,7 @@
[[lein-pprint "1.3.2"]
[lein-ancient "0.7.0"]
[lein-cljsbuild "1.1.8"]
[com.taoensso.forks/lein-codox "0.10.10"]]
[com.taoensso.forks/lein-codox "0.10.11"]]

:codox
{:language #{:clojure :clojurescript}
Expand Down
4 changes: 2 additions & 2 deletions src/taoensso/tempura.cljc
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
[taoensso.encore :as enc :refer [have have?]]
[taoensso.tempura.impl :as impl :refer []]))

(enc/assert-min-encore-version [3 31 0])
(enc/assert-min-encore-version [3 112 0])

(def ^:dynamic *tr-opts* nil)
(def ^:dynamic *tr-scope* nil)
Expand Down Expand Up @@ -42,7 +42,7 @@
(enc/sb-append sb (str x1))
(enc/str-builder (str x1))))))]

(if (and (== (count out) 2) (enc/kw-identical? (nth out 0) :span))
(if (and (== (count out) 2) (enc/identical-kw? (nth out 0) :span))
(nth out 1)
(do out))))

Expand Down

0 comments on commit b6f529c

Please sign in to comment.