Skip to content

Commit

Permalink
CLJS-3278: Update to tools.reader 1.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
mfikes committed Aug 10, 2020
1 parent ccde79a commit 5b6558b
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion deps.edn
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
org.clojure/data.json {:mvn/version "0.2.6"}
org.clojure/google-closure-library {:mvn/version "0.0-20191016-6ae1f72f"}
org.clojure/spec.alpha {:mvn/version "0.1.143"}
org.clojure/tools.reader {:mvn/version "1.3.2"}
org.clojure/tools.reader {:mvn/version "1.3.3"}
org.clojure/test.check {:mvn/version "0.10.0-alpha3"}}
:aliases
{:cli.test.run {:extra-paths ["src/test/cljs_cli"]
Expand Down
2 changes: 1 addition & 1 deletion pom.template.xml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
<dependency>
<groupId>org.clojure</groupId>
<artifactId>tools.reader</artifactId>
<version>1.3.2</version>
<version>1.3.3</version>
</dependency>
<dependency>
<groupId>com.cognitect</groupId>
Expand Down
2 changes: 1 addition & 1 deletion project.clj
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
[org.clojure/spec.alpha "0.1.143"]
[org.clojure/core.specs.alpha "0.1.24"]
[org.clojure/data.json "0.2.6"]
[org.clojure/tools.reader "1.3.2"]
[org.clojure/tools.reader "1.3.3"]
[org.clojure/test.check "0.10.0-alpha3" :scope "test"]
[com.cognitect/transit-clj "0.8.309"]
[org.clojure/google-closure-library "0.0-20191016-6ae1f72f"]
Expand Down
2 changes: 1 addition & 1 deletion script/bootstrap
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ CLOSURE_RELEASE="20200315"
DJSON_RELEASE="0.2.6"
TRANSIT_RELEASE="0.8.309"
GCLOSURE_LIB_RELEASE="0.0-20191016-6ae1f72f"
TREADER_RELEASE="1.3.0"
TREADER_RELEASE="1.3.3"
TEST_CHECK_RELEASE="0.10.0-alpha3"

# check dependencies
Expand Down
3 changes: 3 additions & 0 deletions src/test/cljs/cljs/reader_test.cljs
Original file line number Diff line number Diff line change
Expand Up @@ -236,3 +236,6 @@
;(deftest test-error-messages
; (testing "Leading numbers in keywords"
; (is (thrown-with-msg? js/Error #"Invalid keyword :0s" (reader/read-string ":0s")))))

(deftest testing-cljs-3278
(is (nil? (reader/read-string {:readers {'foo (constantly nil)}} "#foo 1"))))

0 comments on commit 5b6558b

Please sign in to comment.