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

Commit

Permalink
Update inital version to 2.7.2
Browse files Browse the repository at this point in the history
- 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).
  • Loading branch information
micha committed Aug 18, 2017
1 parent 172a3d2 commit 4b7b068
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion boot.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#https://github.com/boot-clj/boot
#Sun Nov 15 17:35:18 EST 2015
BOOT_VERSION=2.5.2
BOOT_VERSION=2.7.2
BOOT_CLOJURE_VERSION=1.7.0
BOOT_CLOJURE_NAME=org.clojure/clojure
BOOT_EMIT_TARGET=no
6 changes: 3 additions & 3 deletions src/Boot.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@
import java.util.regex.Pattern;
import java.lang.reflect.Method;
import static java.nio.file.StandardCopyOption.*;

@SuppressWarnings("unchecked")
public class Boot {

public static final String initialVersion = "2.5.2";
public static final String initialVersion = "2.7.2";
public static final File homedir = new File(System.getProperty("user.home"));
public static final File workdir = new File(System.getProperty("user.dir"));
public static final ParentClassLoader loader = new ParentClassLoader(Boot.class.getClassLoader());

public static File
mkFile(File parent, String... kids) throws Exception {
File ret = parent;
Expand Down

0 comments on commit 4b7b068

Please sign in to comment.