Skip to content

Commit

Permalink
v0.8.43
Browse files Browse the repository at this point in the history
  • Loading branch information
borkdude committed Aug 6, 2024
1 parent 7fb09a7 commit 05eec0a
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ SCI is used in [babashka](https://github.com/babashka/babashka),
[joyride](https://github.com/BetterThanTomorrow/joyride/) and many
[other](https://github.com/babashka/sci#projects-using-sci) projects.

## 0.8.43 (2024-08-06)

- Fix shadow-cljs warnings

## 0.8.42 (2024-07-23)

- Fix [#626](https://github.com/babashka/sci/issues/626): add `cljs.core/exists?`
Expand Down
2 changes: 1 addition & 1 deletion deps.edn
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
org.clojure/clojurescript {:mvn/version "1.10.866"}
clj-commons/conch {:mvn/version "0.9.2"}
funcool/promesa {:mvn/version "8.0.450"}}}
:shadow {:extra-deps {thheller/shadow-cljs {:mvn/version "2.19.4"}}}
:shadow {:extra-deps {thheller/shadow-cljs {:mvn/version "2.28.11"}}}
:cljs {:extra-deps {org.clojure/clojurescript {:mvn/version "1.11.54"}}}
:clj-test-runner
{:extra-deps {com.cognitect/test-runner
Expand Down
2 changes: 1 addition & 1 deletion resources/SCI_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.8.42
0.8.43
6 changes: 3 additions & 3 deletions src/sci/impl/analyzer.cljc
Original file line number Diff line number Diff line change
Expand Up @@ -1700,11 +1700,11 @@
(if (<= children-count 16)
#?(:clj #(let [^objects arr (into-array Object %&)]
(clojure.lang.PersistentArrayMap/createWithCheck arr))
:cljs #(PersistentArrayMap.createWithCheck (into-array %&))
:cljs #(.createWithCheck PersistentArrayMap (into-array %&))
:default array-map)
#?(:clj #(let [^clojure.lang.ISeq s %&]
(clojure.lang.PersistentHashMap/createWithCheck s))
:cljs #(PersistentHashMap.createWithCheck (into-array %&))
:cljs #(.createWithCheck PersistentHashMap (into-array %&))
:default hash-map)))

(defn return-map [ctx the-map analyzed-children]
Expand Down Expand Up @@ -1841,7 +1841,7 @@
vector expr m)
(set? expr) (analyze-vec-or-set ctx set
#?(:clj #(clojure.lang.PersistentHashSet/createWithCheck ^clojure.lang.ISeq %&)
:cljs #(PersistentHashSet.createWithCheck (into-array %&))
:cljs #(.createWithCheck PersistentHashSet (into-array %&))
:default vector)
expr m)
(seq? expr) (if (seq expr)
Expand Down

0 comments on commit 05eec0a

Please sign in to comment.