Skip to content

Commit 06c1b9b

Browse files
author
dnolen
committed
1.9.562
1 parent 6180533 commit 06c1b9b

File tree

3 files changed

+31
-4
lines changed

3 files changed

+31
-4
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ Official web site: http://clojurescript.org
66

77
## Releases and dependency information ##
88

9-
Latest stable release: 1.9.542
9+
Latest stable release: 1.9.562
1010

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

1313
[Leiningen](http://github.com/technomancy/leiningen/) dependency information:
1414

1515
```
16-
[org.clojure/clojurescript "1.9.542"]
16+
[org.clojure/clojurescript "1.9.562"]
1717
```
1818

1919
[Maven](http://maven.apache.org) dependency information:
@@ -22,7 +22,7 @@ Latest stable release: 1.9.542
2222
<dependency>
2323
<groupId>org.clojure</groupId>
2424
<artifactId>clojurescript</artifactId>
25-
<version>1.9.542</version>
25+
<version>1.9.562</version>
2626
</dependency>
2727
```
2828

changes.md

+27
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,30 @@
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+
128
## 1.9.542
229

330
### Enhancements

src/main/clojure/cljs/core.cljc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1783,7 +1783,7 @@
17831783
(new ~tagname ~@(remove #{'__extmap '__hash} fields) (assoc ~'__extmap k# ~gs) nil)))
17841784
'IMap
17851785
`(~'-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#)
17871787
(new ~tagname ~@(remove #{'__extmap '__hash} fields)
17881788
(not-empty (dissoc ~'__extmap k#))
17891789
nil)))

0 commit comments

Comments
 (0)