Skip to content

Commit b1c1e73

Browse files
committed
fix formatting
1 parent d021081 commit b1c1e73

1 file changed

Lines changed: 17 additions & 9 deletions

File tree

content/news/2026/07/02/clojure-1-13-alpha1.adoc

Lines changed: 17 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,6 @@ Alex Miller
55

66
Clojure 1.13.0-alpha1 is now available! Find download and usage information on the <<xref/../../../../../releases/downloads#,Downloads>> page.
77

8-
Update your deps.edn :deps with:
9-
10-
```org.clojure/clojure {:mvn/version "1.13.0-alpha1"}```
11-
12-
Start a REPL with the Clojure CLI (any version) with:
13-
14-
```clj -Sdeps '{:deps {org.clojure/clojure {:mvn/version "1.13.0-alpha1"}}}```
15-
168
== Checked keys
179

1810
You can now ensure that required keys are bound during map destructuring by using the new checked variants of the :keys/:syms/:strs directives - :keys!/:syms!/:strs!, which will throw if the key is not present. You can also, in all directives, specify keys after & which will not be bound, for documentation or checking purposes.
@@ -26,4 +18,20 @@ You can now ensure that required keys are bound during map destructuring by usin
2618

2719
* PersistentArrayMaps of only keyword keys now grow up to size 64 (previously was 8) before transitioning to PersistentHashMaps. PAM identity scans are more efficient than PHM lookups in this range, also makes more usage sites monomorphic and thus easier to optimize.
2820
* https://clojure.atlassian.net/browse/CLJ-2891[CLJ-2891] Remove ACC_FINAL designation from static initializer constants. This change was made as a prepatory step towards moving the Java bytecode baseline to address new verifier checks.
29-
* Runtime and test dependencies updated to latest versions
21+
* Runtime and test dependencies updated to latest versions
22+
23+
== Try it out
24+
25+
Update your deps.edn :deps with:
26+
27+
[source]
28+
----
29+
org.clojure/clojure {:mvn/version "1.13.0-alpha1"}
30+
----
31+
32+
Start a REPL with the Clojure CLI (any version) with:
33+
34+
[source]
35+
----
36+
clj -Sdeps '{:deps {org.clojure/clojure {:mvn/version "1.13.0-alpha1"}}}
37+
----

0 commit comments

Comments
 (0)