Skip to content
This repository was archived by the owner on Jan 25, 2019. It is now read-only.

Commit 4b7b068

Browse files
committed
Update inital version to 2.7.2
- The initial version is the version of boot that is installed when boot.sh is run for the first time ever on a machine (i.e. Boot not already installed).
1 parent 172a3d2 commit 4b7b068

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

boot.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#https://github.com/boot-clj/boot
22
#Sun Nov 15 17:35:18 EST 2015
3-
BOOT_VERSION=2.5.2
3+
BOOT_VERSION=2.7.2
44
BOOT_CLOJURE_VERSION=1.7.0
55
BOOT_CLOJURE_NAME=org.clojure/clojure
66
BOOT_EMIT_TARGET=no

src/Boot.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@
1111
import java.util.regex.Pattern;
1212
import java.lang.reflect.Method;
1313
import static java.nio.file.StandardCopyOption.*;
14-
14+
1515
@SuppressWarnings("unchecked")
1616
public class Boot {
1717

18-
public static final String initialVersion = "2.5.2";
18+
public static final String initialVersion = "2.7.2";
1919
public static final File homedir = new File(System.getProperty("user.home"));
2020
public static final File workdir = new File(System.getProperty("user.dir"));
2121
public static final ParentClassLoader loader = new ParentClassLoader(Boot.class.getClassLoader());
22-
22+
2323
public static File
2424
mkFile(File parent, String... kids) throws Exception {
2525
File ret = parent;

0 commit comments

Comments
 (0)