diff --git a/README.md b/README.md index 127011f..b39b36e 100644 --- a/README.md +++ b/README.md @@ -23,9 +23,9 @@ completed. The only things you'll need to run the Clojure Koans are: - JRE 1.5 or higher -- [clojure-1.3.0-alpha4.jar](https://github.com/downloads/clojure/clojure/clojure-1.3.0-alpha4.zip) +- [clojure-1.3.0-beta2.jar](https://github.com/downloads/clojure/clojure/clojure-1.3.0-beta2.zip) -clojure-1.3.0-alpha4.jar needs to be in a directory `lib` under this project. +clojure-1.3.0-beta2-SNAPSHOT.jar needs to be in a directory `lib` under this project. You can use [Leiningen](http://github.com/technomancy/leiningen) to automatically install the Clojure jar in the right place. Leiningen will also diff --git a/project.clj b/project.clj index 5dcb350..7c9d33a 100644 --- a/project.clj +++ b/project.clj @@ -1,7 +1,6 @@ -(defproject functional-koans "0.4.2" +(defproject functional-koans "0.4.3" :description "The functional koans" - :dependencies [[org.clojure/clojure "1.3.0-master-SNAPSHOT"] + :dependencies [[org.clojure/clojure "1.3.0-beta2"] [fresh "1.0.2"] [jline "0.9.94" :exclusions [junit]]] - :dev-dependencies [[swank-clojure "1.3.0-SNAPSHOT" :exclusions [org.clojure/clojure]]] - :repositories {"sonatype-oss-public" "https://oss.sonatype.org/content/groups/public"}) + :dev-dependencies [[swank-clojure "1.3.0-SNAPSHOT" :exclusions [org.clojure/clojure]]])