From 998bd11d19a5be979730ff0afda4f010c89ffe7a Mon Sep 17 00:00:00 2001 From: Mark McGranaghan Date: Sun, 28 Mar 2010 19:04:18 -0400 Subject: [PATCH] Release 0.2.0. --- .gitignore | 2 +- HISTORY.md | 2 +- README.md | 4 ++-- project.clj | 12 ++++++------ ring-core/project.clj | 2 +- ring-devel/project.clj | 4 ++-- ring-httpcore-adapter/project.clj | 4 ++-- ring-jetty-adapter/project.clj | 6 +++--- ring-servlet/project.clj | 4 ++-- 9 files changed, 20 insertions(+), 20 deletions(-) diff --git a/.gitignore b/.gitignore index e53d6214..67cd9df2 100644 --- a/.gitignore +++ b/.gitignore @@ -4,4 +4,4 @@ ring-*.jar ring.jar ring-standalone.jar pom.xml -autodoc \ No newline at end of file +autodoc diff --git a/HISTORY.md b/HISTORY.md index 7d593b6e..b67aec5d 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,4 +1,4 @@ -## 0.2.0 (2010-03-17) +## 0.2.0 (2010-03-28) * Distribute Ring as separate Maven artifacts: `ring-core`, `ring-servlet`, `ring-devel`, `ring-jetty-adapter`, and `ring-http-core-adapter` * The `ring` artifact now just depends on all of these granular artifacts diff --git a/README.md b/README.md index 3cad8a93..7358f362 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-RC2"] + [ring/ring-core "0.2.0"] To include all of them, add: - [ring/ring "0.2.0-RC2"] + [ring/ring "0.2.0"] ## Development diff --git a/project.clj b/project.clj index 5b994ec3..a2bc7c00 100644 --- a/project.clj +++ b/project.clj @@ -1,12 +1,12 @@ -(defproject ring "0.2.0-RC2" +(defproject ring "0.2.0" :description "A Clojure web applications library." :url "http://github.com/mmcgrana/ring" :dependencies - [[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"]] + [[ring/ring-core "0.2.0"] + [ring/ring-devel "0.2.0"] + [ring/ring-httpcore-adapter "0.2.0"] + [ring/ring-jetty-adapter "0.2.0"] + [ring/ring-servlet "0.2.0"]] :dev-dependencies [[autodoc "0.7.0"] [lein-clojars "0.5.0"]] diff --git a/ring-core/project.clj b/ring-core/project.clj index 1f127523..5bead71c 100644 --- a/ring-core/project.clj +++ b/ring-core/project.clj @@ -1,4 +1,4 @@ -(defproject ring/ring-core "0.2.0-RC2" +(defproject ring/ring-core "0.2.0" :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 6736bc20..8c55abc6 100644 --- a/ring-devel/project.clj +++ b/ring-devel/project.clj @@ -1,7 +1,7 @@ -(defproject ring/ring-devel "0.2.0-RC2" +(defproject ring/ring-devel "0.2.0" :description "Ring development and debugging libraries." :url "http://github.com/mmcgrana/ring" - :dependencies [[ring/ring-core "0.2.0-RC2"] + :dependencies [[ring/ring-core "0.2.0"] [clj-html "0.1.0"] [clj-stacktrace "0.1.0"]] :dev-dependencies [[lein-clojars "0.5.0"]]) diff --git a/ring-httpcore-adapter/project.clj b/ring-httpcore-adapter/project.clj index 58c5e6cf..ebaa3f71 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-RC2" +(defproject ring/ring-httpcore-adapter "0.2.0" :description "Ring HttpCore adapter." :url "http://github.com/mmcgrana/ring" - :dependencies [[ring/ring-core "0.2.0-RC2"] + :dependencies [[ring/ring-core "0.2.0"] [org.apache.httpcomponents/httpcore "4.0.1"] [org.apache.httpcomponents/httpcore-nio "4.0.1"]] :dev-dependencies [[lein-clojars "0.5.0"]]) diff --git a/ring-jetty-adapter/project.clj b/ring-jetty-adapter/project.clj index 75987abc..de87b5fc 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-RC2" +(defproject ring/ring-jetty-adapter "0.2.0" :description "Ring Jetty adapter." :url "http://github.com/mmcgrana/ring" - :dependencies [[ring/ring-core "0.2.0-RC2"] - [ring/ring-servlet "0.2.0-RC2"] + :dependencies [[ring/ring-core "0.2.0"] + [ring/ring-servlet "0.2.0"] [org.mortbay.jetty/jetty "6.1.14"] [org.mortbay.jetty/jetty-util "6.1.14"]] :dev-dependencies [[lein-clojars "0.5.0"]]) diff --git a/ring-servlet/project.clj b/ring-servlet/project.clj index f087d301..4f5c56ae 100644 --- a/ring-servlet/project.clj +++ b/ring-servlet/project.clj @@ -1,6 +1,6 @@ -(defproject ring/ring-servlet "0.2.0-RC2" +(defproject ring/ring-servlet "0.2.0" :description "Ring servlet utilities." :url "http://github.com/mmcgrana/ring" - :dependencies [[ring/ring-core "0.2.0-RC2"] + :dependencies [[ring/ring-core "0.2.0"] [org.mortbay.jetty/servlet-api-2.5 "6.1.14"]] :dev-dependencies [[lein-clojars "0.5.0"]])