File tree 3 files changed +31
-4
lines changed
3 files changed +31
-4
lines changed Original file line number Diff line number Diff line change @@ -6,14 +6,14 @@ Official web site: http://clojurescript.org
6
6
7
7
## Releases and dependency information ##
8
8
9
- Latest stable release: 1.9.542
9
+ Latest stable release: 1.9.562
10
10
11
11
* [ All released versions] ( http://search.maven.org/#search%7Cgav%7C1%7Cg%3A%22org.clojure%22%20AND%20a%3A%22clojurescript%22 )
12
12
13
13
[ Leiningen] ( http://github.com/technomancy/leiningen/ ) dependency information:
14
14
15
15
```
16
- [org.clojure/clojurescript "1.9.542 "]
16
+ [org.clojure/clojurescript "1.9.562 "]
17
17
```
18
18
19
19
[ Maven] ( http://maven.apache.org ) dependency information:
@@ -22,7 +22,7 @@ Latest stable release: 1.9.542
22
22
<dependency>
23
23
<groupId>org.clojure</groupId>
24
24
<artifactId>clojurescript</artifactId>
25
- <version>1.9.542 </version>
25
+ <version>1.9.562 </version>
26
26
</dependency>
27
27
```
28
28
Original file line number Diff line number Diff line change
1
+ ## 1.9.562
2
+
3
+ ### Enhancements
4
+ * CLJS-2027: Add language-in for ECMA 2017 and ECMA Next
5
+ * CLJS-2026: Add Compiler option for rewrite polyfills
6
+
7
+ ### Changes
8
+ * CLJS-2021: subvec throws when passed non-vector
9
+ * CLJS-1884: Give a chance to MetaFn to be removed by closure under : advanced
10
+ optimization Replace with-meta calls by -with-meta calls where possible
11
+ * CLJS-2052: Port new spec.alpha enhancements
12
+ * Update Google Closure Compiler dependency
13
+ * Update Google Closure Library dependency
14
+
15
+ ### Fixes
16
+ * CLJS-2053: Regression: cljs.spec.alpha/any for fdef
17
+ * CLJS-2039: remove extraneous argument from ChunkBuffer.chunk
18
+ * Fix assumption that all closure-compliant JS is goog.*
19
+ * CLJS-2035: Self-host: Add map-entry-test to self-parity
20
+ * CLJS-2033: set-validator! should check current state
21
+ * CLJS-2008: Self-host: backport fixes to threading macros
22
+ * CLJS-2005: Bad error message with duplicate arity function definitions
23
+ * CLJS-2032: Case macro expansion evaluates expression twice when no matching clause
24
+ * CLJS-2023: User supplied type hints stopped working on js/goog.DEBUG
25
+ * CLJS-2020: defmulti "miss" performance poor
26
+ * CLJS-2034: Sequence and Eduction produce infinite loop in transducer that appends to the reduction
27
+
1
28
## 1.9.542
2
29
3
30
### Enhancements
Original file line number Diff line number Diff line change 1783
1783
(new ~tagname ~@(remove #{'__extmap '__hash} fields) (assoc ~'__extmap k# ~gs) nil )))
1784
1784
'IMap
1785
1785
`(~'-dissoc [this# k#] (if (contains? #{~@(map keyword base-fields)} k#)
1786
- (dissoc (with-meta (into {} this#) ~'__meta) k#)
1786
+ (dissoc (- with-meta (into {} this#) ~'__meta) k#)
1787
1787
(new ~tagname ~@(remove #{'__extmap '__hash} fields)
1788
1788
(not-empty (dissoc ~'__extmap k#))
1789
1789
nil )))
You can’t perform that action at this time.
0 commit comments