Skip to content

Commit 26dea31

Browse files
committed
1.11.132
1 parent 54c27fb commit 26dea31

File tree

2 files changed

+37
-4
lines changed

2 files changed

+37
-4
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -6,20 +6,20 @@ Official web site: https://clojurescript.org
66

77
## Releases and dependency information ##
88

9-
Latest stable release: 1.11.60
9+
Latest stable release: 1.11.132
1010

1111
* [All released versions](https://search.maven.org/#search%7Cgav%7C1%7Cg%3A%22org.clojure%22%20AND%20a%3A%22clojurescript%22)
1212

1313
[Clojure deps.edn](http://clojure.org/guides/deps_and_cli) dependency information:
1414

1515
```
16-
org.clojure/clojurescript {:mvn/version "1.11.60"}
16+
org.clojure/clojurescript {:mvn/version "1.11.132"}
1717
```
1818

1919
[Leiningen](https://github.com/technomancy/leiningen/) dependency information:
2020

2121
```
22-
[org.clojure/clojurescript "1.11.60"]
22+
[org.clojure/clojurescript "1.11.132"]
2323
```
2424

2525
[Maven](https://maven.apache.org) dependency information:
@@ -28,7 +28,7 @@ Latest stable release: 1.11.60
2828
<dependency>
2929
<groupId>org.clojure</groupId>
3030
<artifactId>clojurescript</artifactId>
31-
<version>1.11.60</version>
31+
<version>1.11.132</version>
3232
</dependency>
3333
```
3434

changes.md

+33
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,36 @@
1+
## 1.11.132
2+
3+
### Fixes
4+
* CLJS-3410: JavaScript double values should not hash to the same result
5+
* CLJS-3381: Invokable JS namespaces used as constructors not hinted properly
6+
* CLJS-3395: `(set! a -x false)` doesn't work
7+
* CLJS-3399: :as-alias does not work with symbols
8+
* CLJS-3401: dedupe '+ and '_PLUS symbols with :optimize-constants
9+
* CLJS-3400: macroexpand does not expand and and or without args correctly
10+
* CLJS-3398: Docstring of with-redefs should mention usage of ^:dynamic in production
11+
* CLJS-3386: defn varargs argument should be nil when no varargs are passed
12+
* CLJS-3384: get-in should not unreduce values.
13+
14+
### Changes
15+
* CLJS-3378: Change default :language-in to :ecmascript-next
16+
* CLJS-3385: Extend empty? to counted? colls that arent seqable, such as transients
17+
* CLJS-3327 Add :node-modules-dirs configuration
18+
* CLJS-3391: add cljs.test/run-test
19+
* CLJS-3369: Speed up random-uuid by generating 4 digits at a time
20+
* CLJS-3014: Promote Error->map to be a core fn
21+
* CLJS-3394: Add ECMASCRIPT options for 2018-2021
22+
* CLJS-2268: Make clojure.string/escape consistent with Clojure
23+
* Bump closure lib to 2023 release
24+
* CLJS-3407: bump tools.reader to 1.3.7
25+
* remove EXPERIMENTAL from ES6 iterator support
26+
* CLJS-3406 implement reset-vals! and swap-vals! through protocol
27+
* CLJS-3363: reduce-kv on seq of map entries
28+
* CLJS-3393: Efficient drop, partition for persistent/algo colls
29+
* CLJS-3408: Handle @extends in externs
30+
* CLJS-3392: datafy support for js/Error and ExceptionInfo
31+
* CLJS-3379: Add support for node_modules with .cjs extension
32+
* CLJS-3387: Browser repl unable to serve wasm files
33+
134
## 1.11.60
235

336
### Fixes

0 commit comments

Comments
 (0)