Skip to content

Commit c69a318

Browse files
authored
bump org.clojure/tools.reader to version 1.3.7 (#248)
* bump org.clojure/tools.reader to version 1.3.7 This is a rewrite-clj dep and will be picked up by users of rewrite-clj. * lib tests: adjust refactor-nrepl patch The refactor-nrepl project.clj enables pedantic only if running from a continuous integration service. Patch its version of tools.reader to match our new version.
1 parent 48500fb commit c69a318

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

CHANGELOG.adoc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ A release with known breaking changes is marked with:
1919
// (adjust these in publish.clj as you see fit)
2020
=== Unreleased
2121

22+
* bump `org.clojure/tools.reader` to version `1.3.7`
23+
2224
=== v1.1.47 - 2023-03-25 [[v1.1.47]]
2325

2426
* Clojure string to rewrite-clj node coercion fixes

deps.edn

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{:paths ["src" "resources"]
22

33
:deps {org.clojure/clojure {:mvn/version "1.8.0"}
4-
org.clojure/tools.reader {:mvn/version "1.3.6"}}
4+
org.clojure/tools.reader {:mvn/version "1.3.7"}}
55

66
:aliases {;; we use babashka/neil for project attributes
77
;; publish workflow references these values (and automatically bumps patch component of version)

script/test_libs.clj

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@
157157
(patch-deps {:filename (str (fs/file home-dir "project.clj"))
158158
;; we remove and add tools.reader because project.clj has pedantic? :abort enabled
159159
:removals #{'rewrite-clj 'org.clojure/tools.reader}
160-
:additions [['org.clojure/tools.reader "1.3.6"]
160+
:additions [['org.clojure/tools.reader "1.3.7"]
161161
['rewrite-clj rewrite-clj-version]]}))
162162

163163
;;
@@ -193,7 +193,7 @@
193193
(string/replace #"rewrite-clj \"(\d+\.)+.*\""
194194
(format "rewrite-clj \"%s\"" rewrite-clj-version))
195195
(string/replace #"org.clojure/tools.reader \"(\d+\.)+.*\""
196-
"org.clojure/tools.reader \"1.3.6\"")
196+
"org.clojure/tools.reader \"1.3.7\"")
197197
(->> (spit p)))))
198198

199199
;;
@@ -225,6 +225,9 @@
225225
;; done with exercising my rewrite-clj skills for now! :-)
226226
(string/replace #"rewrite-clj \"(\d+\.)+.*\""
227227
(format "rewrite-clj \"%s\"" rewrite-clj-version))
228+
;; pedantic is enabled for CI, so adjust to match rewrite-clj so we don't fail
229+
(string/replace #"org.clojure/tools.reader \"(\d+\.)+.*\""
230+
"org.clojure/tools.reader \"1.3.7\"")
228231
(->> (spit p)))))
229232

230233
;;

0 commit comments

Comments
 (0)