From 31041186c5bafa4c8f4bfe616ddc8a62c07a0968 Mon Sep 17 00:00:00 2001 From: Phillip Mates Date: Tue, 4 Jun 2024 15:49:17 +0200 Subject: [PATCH 1/2] bump encore --- project.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project.clj b/project.clj index f75cde2..5dd8a7a 100644 --- a/project.clj +++ b/project.clj @@ -8,7 +8,7 @@ :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"] From da9f2f15545fc2d22412a1ed076f87b6befa2f48 Mon Sep 17 00:00:00 2001 From: Phillip Mates Date: Tue, 4 Jun 2024 15:49:31 +0200 Subject: [PATCH 2/2] replace kw-identical? with identical-kw? to fix deprecation warning --- src/taoensso/tempura.cljc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/taoensso/tempura.cljc b/src/taoensso/tempura.cljc index 316ed0d..a9185e7 100644 --- a/src/taoensso/tempura.cljc +++ b/src/taoensso/tempura.cljc @@ -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))))