diff --git a/README.md b/README.md index 2aa358d4..3cad8a93 100644 --- a/README.md +++ b/README.md @@ -90,11 +90,11 @@ To see a more sophisticated Ring app, run: To include one of the above libraries in your Leiningen project, for example `ring-core`, add the following to your `:dependences`: - [ring/ring-core "0.2.0-RC1"] + [ring/ring-core "0.2.0-RC2"] To include all of them, add: - [ring/ring "0.2.0-RC1"] + [ring/ring "0.2.0-RC2"] ## Development diff --git a/project.clj b/project.clj index 6a48acb3..ebc7091c 100644 --- a/project.clj +++ b/project.clj @@ -1,12 +1,12 @@ -(defproject ring "0.2.0-RC1" +(defproject ring "0.2.0-RC2" :description "A Clojure web applications library." :url "http://github.com/mmcgrana/ring" :dependencies - [[ring/ring-core "0.2.0-RC1"] - [ring/ring-devel "0.2.0-RC1"] - [ring/ring-httpcore-adapter "0.2.0-RC1"] - [ring/ring-jetty-adapter "0.2.0-RC1"] - [ring/ring-servlet "0.2.0-RC1"]] + [[ring/ring-core "0.2.0-RC2"] + [ring/ring-devel "0.2.0-RC2"] + [ring/ring-httpcore-adapter "0.2.0-RC2"] + [ring/ring-jetty-adapter "0.2.0-RC2"] + [ring/ring-servlet "0.2.0-RC2"]] :dev-dependencies [[autodoc "0.7.0"]] :autodoc {:name "Ring" diff --git a/ring-core/project.clj b/ring-core/project.clj index bd642393..8678c543 100644 --- a/ring-core/project.clj +++ b/ring-core/project.clj @@ -1,4 +1,4 @@ -(defproject ring/ring-core "0.2.0-RC1" +(defproject ring/ring-core "0.2.0-RC2" :description "Ring core libraries." :url "http://github.com/mmcgrana/ring" :dependencies [[org.clojure/clojure "1.1.0"] diff --git a/ring-devel/project.clj b/ring-devel/project.clj index 551df3b4..85e1c97c 100644 --- a/ring-devel/project.clj +++ b/ring-devel/project.clj @@ -1,7 +1,7 @@ -(defproject ring/ring-devel "0.2.0-RC1" +(defproject ring/ring-devel "0.2.0-RC2" :description "Ring development and debugging libraries." :url "http://github.com/mmcgrana/ring" - :dependencies [[ring/ring-core "0.2.0-RC1"] + :dependencies [[ring/ring-core "0.2.0-RC2"] [clj-html "0.1.0"] [clj-stacktrace "0.1.0"]] :dev-dependencies [[org.clojars.mmcgrana/lein-clojars "0.5.0"]]) diff --git a/ring-httpcore-adapter/project.clj b/ring-httpcore-adapter/project.clj index 733521eb..6b245a8a 100644 --- a/ring-httpcore-adapter/project.clj +++ b/ring-httpcore-adapter/project.clj @@ -1,7 +1,7 @@ -(defproject ring/ring-httpcore-adapter "0.2.0-RC1" +(defproject ring/ring-httpcore-adapter "0.2.0-RC2" :description "Ring HttpCore adapter." :url "http://github.com/mmcgrana/ring" - :dependencies [[ring/ring-core "0.2.0-RC1"] + :dependencies [[ring/ring-core "0.2.0-RC2"] [org.apache.httpcomponents/httpcore "4.0.1"] [org.apache.httpcomponents/httpcore-nio "4.0.1"]] :dev-dependencies [[org.clojars.mmcgrana/lein-clojars "0.5.0"]]) diff --git a/ring-jetty-adapter/project.clj b/ring-jetty-adapter/project.clj index 355817a4..89d394b0 100644 --- a/ring-jetty-adapter/project.clj +++ b/ring-jetty-adapter/project.clj @@ -1,8 +1,8 @@ -(defproject ring/ring-jetty-adapter "0.2.0-RC1" +(defproject ring/ring-jetty-adapter "0.2.0-RC2" :description "Ring Jetty adapter." :url "http://github.com/mmcgrana/ring" - :dependencies [[ring/ring-core "0.2.0-RC1"] - [ring/ring-servlet "0.2.0-RC1"] + :dependencies [[ring/ring-core "0.2.0-RC2"] + [ring/ring-servlet "0.2.0-RC2"] [org.mortbay.jetty/jetty "6.1.14"] [org.mortbay.jetty/jetty-util "6.1.14"]] :dev-dependencies [[org.clojars.mmcgrana/lein-clojars "0.5.0"]]) diff --git a/ring-servlet/project.clj b/ring-servlet/project.clj index c1ad0cf6..b67848aa 100644 --- a/ring-servlet/project.clj +++ b/ring-servlet/project.clj @@ -1,6 +1,6 @@ -(defproject ring/ring-servlet "0.2.0-RC1" +(defproject ring/ring-servlet "0.2.0-RC2" :description "Ring servlet utilities." :url "http://github.com/mmcgrana/ring" - :dependencies [[ring/ring-core "0.2.0-RC1"] + :dependencies [[ring/ring-core "0.2.0-RC2"] [org.mortbay.jetty/servlet-api-2.5 "6.1.14"]] :dev-dependencies [[org.clojars.mmcgrana/lein-clojars "0.5.0"]])