diff --git a/README.md b/README.md index b22ef23..4c6bcab 100644 --- a/README.md +++ b/README.md @@ -6,13 +6,13 @@ The only things you need to run the Clojure Koans are: - JRE 1.5 or higher -- clojure-1.2.0-RC1.jar - (http://github.com/downloads/relevance/functional-koans/clojure-1.2.0-RC1.jar) +- clojure-1.2.0-RC2.jar + (http://github.com/downloads/relevance/functional-koans/clojure-1.2.0-RC2.jar) -clojure-1.2.0-RC1.jar needs to be placed in a directory `lib` under this project. +clojure-1.2.0-RC2.jar needs to be placed in a directory `lib` under this project. You can also use leiningen (http://github.com/technomancy/leiningen) to -automatically install the clojure-1.2.0-RC1.jar in the right place. +automatically install the clojure-1.2.0-RC2.jar in the right place. After you have leiningen installed, run diff --git a/project.clj b/project.clj index db52468..4d5f202 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ (defproject functional-koans "0.1.0" :description "The functional koans" - :dependencies [[org.clojure/clojure "1.2.0-RC1"]] + :dependencies [[org.clojure/clojure "1.2.0-RC2"]] :namespaces [koans]) diff --git a/run.bat b/run.bat index f212dcb..118b5d8 100755 --- a/run.bat +++ b/run.bat @@ -1,2 +1,2 @@ @echo off -java -cp lib\clojure-1.2.0-RC1.jar;src clojure.main -e "(load \"path_to_enlightenment\")" -e "(do (in-ns 'path-to-enlightenment) (run))" +java -cp lib\clojure-1.2.0-RC2.jar;src clojure.main -e "(load \"path_to_enlightenment\")" -e "(do (in-ns 'path-to-enlightenment) (run))" diff --git a/run.sh b/run.sh index db25d5f..26bfcc5 100755 --- a/run.sh +++ b/run.sh @@ -1,2 +1,2 @@ -java -cp lib/clojure-1.2.0-RC1.jar:src clojure.main -e '(load "path_to_enlightenment")' -e "(do (in-ns 'path-to-enlightenment) (run))" +java -cp lib/clojure-1.2.0-RC2.jar:src clojure.main -e '(load "path_to_enlightenment")' -e "(do (in-ns 'path-to-enlightenment) (run))" echo diff --git a/test.bat b/test.bat index 6b55388..057d066 100755 --- a/test.bat +++ b/test.bat @@ -1,2 +1,2 @@ @echo off -java -cp lib\clojure-1.2.0-RC1.jar;src clojure.main -e "(load \"path_to_answer_sheet\")" -e "(do (in-ns 'path-to-answer-sheet) (run))" +java -cp lib\clojure-1.2.0-RC2.jar;src clojure.main -e "(load \"path_to_answer_sheet\")" -e "(do (in-ns 'path-to-answer-sheet) (run))" diff --git a/test.sh b/test.sh index 25e33c4..e1d10ed 100755 --- a/test.sh +++ b/test.sh @@ -1,2 +1,2 @@ -java -cp lib/clojure-1.2.0-RC1.jar:src clojure.main -e '(load "path_to_answer_sheet")' -e "(do (in-ns 'path-to-answer-sheet) (run))" +java -cp lib/clojure-1.2.0-RC2.jar:src clojure.main -e '(load "path_to_answer_sheet")' -e "(do (in-ns 'path-to-answer-sheet) (run))" echo