From 12afa4e0675cd35ddf988d29d9046b3030e66d76 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Imre=20K=C3=B3sz=C3=B3?= Date: Thu, 13 Feb 2020 16:46:18 +0100 Subject: [PATCH] upgrade to latest macrovich macrovich 0.2.0 transitively pulls in clojure/script as a dependency. This has been fixed in 0.2.1 --- README.md | 4 ++++ project.clj | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 1566206..b673133 100644 --- a/README.md +++ b/README.md @@ -232,6 +232,10 @@ Evaluation count : 24 in 6 samples of 4 calls. ## Changelog +### 0.19.3 + + * Bump `net.cgrand/macrovich` so Clojure and ClojureScript remain `provided` and are not pulled in transitively + ### 0.19.0 `time` allows to measure time spent in one transducer (excluding time spent downstream). diff --git a/project.clj b/project.clj index 771ae0b..7f33c23 100644 --- a/project.clj +++ b/project.clj @@ -1,8 +1,8 @@ -(defproject net.cgrand/xforms "0.19.2" +(defproject net.cgrand/xforms "0.19.3-SNAPSHOT" :description "Extra transducers for Clojure" :url "https://github.com/cgrand/xforms" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.8.0" :scope "provided"] [org.clojure/clojurescript "1.9.293" :scope "provided"] - [net.cgrand/macrovich "0.2.0"]]) \ No newline at end of file + [net.cgrand/macrovich "0.2.1"]])