Skip to content

Commit

Permalink
Fix #242: Update default Clojure version to 1.7.0
Browse files Browse the repository at this point in the history
- This will not automatically update existing boot installations. This
  only changes the default Clojure version when first installing boot.

- To update an existing installation is still as described in the wiki[1],
  for example:

      $ BOOT_CLOJURE_VERSION=1.7.0 boot -u

[1]: https://github.com/boot-clj/boot/wiki/Keeping-Boot-Up-to-Date
  • Loading branch information
micha committed Jul 7, 2015
1 parent a238920 commit 7381d5c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion boot/base/src/main/java/boot/App.java
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public static class Exit extends Exception {
String c = cljversion;
String t = null;

if (c == null) c = "1.6.0";
if (c == null) c = "1.7.0";

if (bootversion != null)
p.setProperty("BOOT_VERSION", bootversion);
Expand Down
2 changes: 1 addition & 1 deletion boot/core/src/boot/task/built_in.clj
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
(let [tasks (#'helpers/available-tasks 'boot.user)
opts (->> main/cli-opts (mapv (fn [[x y z]] ["" (str x " " y) z])))
envs [["" "BOOT_AS_ROOT" "Set to 'yes' to allow boot to run as root."]
["" "BOOT_CLOJURE_VERSION" "The version of Clojure boot will provide (1.6.0)."]
["" "BOOT_CLOJURE_VERSION" "The version of Clojure boot will provide (1.7.0)."]
["" "BOOT_HOME" "Directory where boot stores global state (~/.boot)."]
["" "BOOT_FILE" "Build script name (build.boot)."]
["" "BOOT_JAVA_COMMAND" "Specify the Java executable (java)."]
Expand Down

0 comments on commit 7381d5c

Please sign in to comment.