Skip to content

Commit 02bfd2f

Browse files
authored
maint: bump tools.reader (#275)
Bump our only lib dep to current latest. I don't see anything of concern in the diff (the current release of rewrite-clj uses 1.3.6): clojure/tools.reader@v1.3.6...v1.4.2 Rationales for bump: - We want to ensure rewrite-clj works with tools.reader latest - As part of the Clojure ecosystem, we'd like to use the latest versions of libs when possible to help validate their correctness
1 parent fdb1206 commit 02bfd2f

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

CHANGELOG.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ 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`
22+
* bump `org.clojure/tools.reader` to version `1.4.2`
2323
* `rewrite-clj.paredit/barf-forward` on zipper created with `:track-position? true` now correctly barfs when current node has children
2424
https://github.com/clj-commons/rewrite-clj/issues/245[#245]
2525

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.7"}}
4+
org.clojure/tools.reader {:mvn/version "1.4.2"}}
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: 3 additions & 3 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.7"]
160+
:additions [['org.clojure/tools.reader "1.4.2"]
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.7\"")
196+
"org.clojure/tools.reader \"1.4.2\"")
197197
(->> (spit p)))))
198198

199199
;;
@@ -227,7 +227,7 @@
227227
(format "rewrite-clj \"%s\"" rewrite-clj-version))
228228
;; pedantic is enabled for CI, so adjust to match rewrite-clj so we don't fail
229229
(string/replace #"org.clojure/tools.reader \"(\d+\.)+.*\""
230-
"org.clojure/tools.reader \"1.3.7\"")
230+
"org.clojure/tools.reader \"1.4.2\"")
231231
(->> (spit p)))))
232232

233233
;;

0 commit comments

Comments
 (0)