Skip to content

Commit f4ed46b

Browse files
committed
update 1.11.1 references
1 parent 9daf893 commit f4ed46b

File tree

6 files changed

+15
-15
lines changed

6 files changed

+15
-15
lines changed

content/guides/async_walkthrough.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ To use core.async, declare a dependency on Clojure 1.10.0 or higher and the late
1818
[source, clojure]
1919
----
2020
{:deps
21-
{org.clojure/clojure {:mvn/version "1.11.1"}
21+
{org.clojure/clojure {:mvn/version "1.11.2"}
2222
org.clojure/core.async {:mvn/version "1.6.673"}}}
2323
----
2424

content/guides/deps_and_cli.adoc

+7-7
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ After you download and install the tools, you can start a REPL by running the `c
3434
[source,shell]
3535
----
3636
$ clj
37-
Clojure 1.11.1
37+
Clojure 1.11.2
3838
user=>
3939
----
4040

@@ -75,7 +75,7 @@ Restart the REPL with the `clj` tool:
7575
$ clj
7676
Downloading: clojure/java-time/clojure.java-time/1.1.0/clojure.java-time-1.1.0.pom from clojars
7777
Downloading: clojure/java-time/clojure.java-time/1.1.0/clojure.java-time-1.1.0.jar from clojars
78-
Clojure 1.11.1
78+
Clojure 1.11.2
7979
user=> (require '[java-time.api :as t])
8080
nil
8181
user=> (str (t/instant))
@@ -271,7 +271,7 @@ Apply that classpath modification and examine the modified classpath by invoking
271271
$ clj -A:test -Spath
272272
test:
273273
src:
274-
/Users/me/.m2/repository/org/clojure/clojure/1.11.1/clojure-1.11.1.jar:
274+
/Users/me/.m2/repository/org/clojure/clojure/1.11.2/clojure-1.11.2.jar:
275275
... same as before (split here for readability)
276276
----
277277

@@ -326,7 +326,7 @@ It can be helpful to experiment with a library without adding it to an existing
326326
[source,bash]
327327
----
328328
$ clojure -Sdeps '{:deps {org.clojure/core.async {:mvn/version "1.5.648"}}}'
329-
Clojure 1.11.1
329+
Clojure 1.11.2
330330
user=> (require '[clojure.core.async :as a])
331331
nil
332332
----
@@ -370,7 +370,7 @@ You can then tell the CLI to prep using this command (this is a 1-time action fo
370370
$ clj -X:deps prep
371371
Prepping io.github.puredanger/cool-lib in /Users/me/demo/needs-prep
372372
$ clj
373-
Clojure 1.11.1
373+
Clojure 1.11.2
374374
user=>
375375
----
376376

@@ -520,7 +520,7 @@ To https://clojure.github.io/tools.deps.cli/clojure.tools.deps.cli.api-api.html#
520520
----
521521
% clj -X:deps list
522522
clojure.java-time/clojure.java-time 1.1.0 (MIT)
523-
org.clojure/clojure 1.11.1 (EPL-1.0)
523+
org.clojure/clojure 1.11.2 (EPL-1.0)
524524
org.clojure/core.specs.alpha 0.2.62 (EPL-1.0)
525525
org.clojure/spec.alpha 0.3.218 (EPL-1.0)
526526
time-lib/time-lib ../cli-getting-started/time-lib
@@ -533,7 +533,7 @@ If you want to understand the https://clojure.github.io/tools.deps.cli/clojure.t
533533
[source,shell]
534534
----
535535
% clj -X:deps tree
536-
org.clojure/clojure 1.11.1
536+
org.clojure/clojure 1.11.2
537537
. org.clojure/spec.alpha 0.3.218
538538
. org.clojure/core.specs.alpha 0.2.62
539539
time-lib/time-lib /Users/alex.miller/tmp/cli-getting-started/time-lib

content/guides/install_clojure.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Clojure (the language) is provided as a Java ARchive (JAR) file, available in th
1515

1616
This page concerns the command-line tool (the Clojure CLI). This tool (used by the commands `clojure` and `clj`) can download Clojure itself and other Clojure or JVM-based libraries. **Any version of the Clojure CLI can download or use any version of the Clojure language itself (they are independent).**
1717

18-
The version numbers of the language and the CLI are separate but related. The Clojure language has a 3 part-version (like `1.11.1`) and the Clojure CLI has a 4-part version (like `1.11.1.1413`). The leading 3 parts of the CLI version indicate which version of the Clojure language will be used by default in a REPL, unless you specify otherwise in the <<xref/../../../reference/deps_edn#,deps.edn>> configuration file.
18+
The version numbers of the language and the CLI are separate but related. The Clojure language has a 3 part-version (like `1.11.2`) and the Clojure CLI has a 4-part version (like `1.11.2.1441`). The leading 3 parts of the CLI version indicate which version of the Clojure language will be used by default in a REPL, unless you specify otherwise in the <<xref/../../../reference/deps_edn#,deps.edn>> configuration file.
1919

2020
== Mac OS instructions
2121

content/guides/spec.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ To use spec, declare a dependency on Clojure 1.9.0 or higher:
1717

1818
[source, clojure]
1919
----
20-
[org.clojure/clojure "1.11.1"]
20+
[org.clojure/clojure "1.11.2"]
2121
----
2222

2323
To start working with spec, require the `clojure.spec.alpha` namespace at the REPL:

content/reference/repl_and_main.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ The simplest way to launch a Clojure _repl_ is to use the <<xref/../../guides/ge
5454
[source,shell]
5555
----
5656
$ clj
57-
Clojure 1.11.1
57+
Clojure 1.11.2
5858
user=>
5959
----
6060

content/releases/download_key.adoc

+4-4
Original file line numberDiff line numberDiff line change
@@ -14,21 +14,21 @@ A typical url in Maven Central will look something like:
1414

1515
[source]
1616
----
17-
https://repo1.maven.org/maven2/org/clojure/clojure/1.11.1/clojure-1.11.1.jar
17+
https://repo1.maven.org/maven2/org/clojure/clojure/1.11.2/clojure-1.11.2.jar
1818
----
1919

2020
Your dependency manager / build tool will download that file to your local Maven cache, usually:
2121

2222
[source]
2323
----
24-
~/.m2/repository/org/clojure/clojure/1.11.1/clojure-1.11.1.jar
24+
~/.m2/repository/org/clojure/clojure/1.11.2/clojure-1.11.2.jar
2525
----
2626

2727
You can append .asc to any jar or pom url in Maven to obtain the signature for that file:
2828

2929
[source]
3030
----
31-
curl -O https://repo1.maven.org/maven2/org/clojure/clojure/1.11.1/clojure-1.11.1.jar.asc
31+
curl -O https://repo1.maven.org/maven2/org/clojure/clojure/1.11.2/clojure-1.11.2.jar.asc
3232
----
3333

3434
== Verification
@@ -42,7 +42,7 @@ The Clojure key used to sign all jars is registered in the MIT key server (pgp.m
4242
You can check this by verifying the jar with the signature:
4343

4444
----
45-
$ gpg --verify clojure-1.11.1.jar.asc ~/.m2/repository/org/clojure/clojure/1.11.1/clojure-1.11.1.jar
45+
$ gpg --verify clojure-1.11.2.jar.asc ~/.m2/repository/org/clojure/clojure/1.11.2/clojure-1.11.2.jar
4646
gpg: Signature made Thu Jun 6 08:43:47 2019 CDT
4747
gpg: using RSA key 8D06684A958AE602
4848
gpg: Good signature from "Clojure/core (build.clojure.org Release Key version 2) <[email protected]>" [unknown]

0 commit comments

Comments
 (0)