updating README and version to reflect 1.2 update

This commit is contained in:
Colin Jones 2010-07-18 11:54:39 -05:00
parent 0c787c91fe
commit 5991dbeb9d
2 changed files with 6 additions and 7 deletions

View File

@ -6,13 +6,13 @@
The only things you need to run the Clojure Koans are:
- JRE 1.5 or higher
- clojure-1.1.0.jar
(http://github.com/downloads/relevance/functional-koans/clojure-1.1.0.jar)
- clojure-1.2.0-beta1.jar
(http://github.com/downloads/relevance/functional-koans/clojure-1.2.0-beta1.jar)
clojure-1.1.0.jar needs to be placed in a directory `lib` under this project.
clojure-1.2.0-beta1.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.1.0.jar in the right place.
automatically install the clojure-1.2.0-beta1.jar in the right place.
After you have leiningen installed, run

View File

@ -1,5 +1,4 @@
(defproject functional-koans "0.0.1"
(defproject functional-koans "0.1.0"
:description "The functional koans"
:dependencies [[org.clojure/clojure "1.2.0-beta1"]
[org.clojure/clojure-contrib "1.2.0-beta1"]]
:dependencies [[org.clojure/clojure "1.2.0-beta1"]]
:namespaces [koans])