From 494798e4de6d065ac3c92bc48668ce80909bf815 Mon Sep 17 00:00:00 2001 From: Colin Jones Date: Tue, 3 Aug 2010 20:44:52 -0500 Subject: [PATCH] updating to clojure 1.2 RC1 --- README.md | 8 ++++---- project.clj | 2 +- run.bat | 2 +- run.sh | 2 +- test.bat | 2 +- test.sh | 2 +- 6 files changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index c638954..b22ef23 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-beta1.jar - (http://github.com/downloads/relevance/functional-koans/clojure-1.2.0-beta1.jar) +- clojure-1.2.0-RC1.jar + (http://github.com/downloads/relevance/functional-koans/clojure-1.2.0-RC1.jar) -clojure-1.2.0-beta1.jar needs to be placed in a directory `lib` under this project. +clojure-1.2.0-RC1.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-beta1.jar in the right place. +automatically install the clojure-1.2.0-RC1.jar in the right place. After you have leiningen installed, run diff --git a/project.clj b/project.clj index 89b5282..db52468 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-beta1"]] + :dependencies [[org.clojure/clojure "1.2.0-RC1"]] :namespaces [koans]) diff --git a/run.bat b/run.bat index a51a9af..f212dcb 100755 --- a/run.bat +++ b/run.bat @@ -1,2 +1,2 @@ @echo off -java -cp lib\clojure-1.2.0-beta1.jar;src clojure.main -e "(load \"path_to_enlightenment\")" -e "(do (in-ns 'path-to-enlightenment) (run))" +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))" diff --git a/run.sh b/run.sh index f592835..db25d5f 100755 --- a/run.sh +++ b/run.sh @@ -1,2 +1,2 @@ -java -cp lib/clojure-1.2.0-beta1.jar:src clojure.main -e '(load "path_to_enlightenment")' -e "(do (in-ns 'path-to-enlightenment) (run))" +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))" echo diff --git a/test.bat b/test.bat index b26199d..6b55388 100755 --- a/test.bat +++ b/test.bat @@ -1,2 +1,2 @@ @echo off -java -cp lib\clojure-1.2.0-beta1.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-RC1.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 504e619..25e33c4 100755 --- a/test.sh +++ b/test.sh @@ -1,2 +1,2 @@ -java -cp lib/clojure-1.2.0-beta1.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-RC1.jar:src clojure.main -e '(load "path_to_answer_sheet")' -e "(do (in-ns 'path-to-answer-sheet) (run))" echo