diff --git a/HISTORY.md b/HISTORY.md index 7837a34b..5451bdda 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,3 +1,9 @@ +## 0.3.7 (2011-03-05) + +* Lint middleware recognises ISeq as valid response body +* Added ring.util.mime-types namespace +* Added content-type middleware + ## 0.3.6 (2011-02-16) * Session and flash middleware handle nils without excepting diff --git a/README.md b/README.md index 65db2f4f..a63bea41 100644 --- a/README.md +++ b/README.md @@ -92,11 +92,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 `:dependencies`: - [ring/ring-core "0.3.6"] + [ring/ring-core "0.3.7"] To include all of them, add: - [ring "0.3.6"] + [ring "0.3.7"] ## Development diff --git a/project.clj b/project.clj index 5d1de69a..7ec86682 100644 --- a/project.clj +++ b/project.clj @@ -1,11 +1,11 @@ -(defproject ring "0.3.6" +(defproject ring "0.3.7" :description "A Clojure web applications library." :url "http://github.com/mmcgrana/ring" :dependencies - [[ring/ring-core "0.3.6"] - [ring/ring-devel "0.3.6"] - [ring/ring-jetty-adapter "0.3.6"] - [ring/ring-servlet "0.3.6"]] + [[ring/ring-core "0.3.7"] + [ring/ring-devel "0.3.7"] + [ring/ring-jetty-adapter "0.3.7"] + [ring/ring-servlet "0.3.7"]] :dev-dependencies [[autodoc "0.7.1" :exclusions [org.clojure/clojure org.clojure/clojure-contrib]]] diff --git a/ring-core/project.clj b/ring-core/project.clj index cc6d3672..53904b74 100644 --- a/ring-core/project.clj +++ b/ring-core/project.clj @@ -1,4 +1,4 @@ -(defproject ring/ring-core "0.3.6" +(defproject ring/ring-core "0.3.7" :description "Ring core libraries." :url "http://github.com/mmcgrana/ring" :dependencies [[org.clojure/clojure "1.2.0"] diff --git a/ring-devel/project.clj b/ring-devel/project.clj index 427e1c6c..a2c95633 100644 --- a/ring-devel/project.clj +++ b/ring-devel/project.clj @@ -1,6 +1,6 @@ -(defproject ring/ring-devel "0.3.6" +(defproject ring/ring-devel "0.3.7" :description "Ring development and debugging libraries." :url "http://github.com/mmcgrana/ring" - :dependencies [[ring/ring-core "0.3.6"] + :dependencies [[ring/ring-core "0.3.7"] [hiccup "0.3.4"] [clj-stacktrace "0.2.0"]]) diff --git a/ring-jetty-adapter/project.clj b/ring-jetty-adapter/project.clj index 9aa35a23..0f302c87 100644 --- a/ring-jetty-adapter/project.clj +++ b/ring-jetty-adapter/project.clj @@ -1,8 +1,8 @@ -(defproject ring/ring-jetty-adapter "0.3.6" +(defproject ring/ring-jetty-adapter "0.3.7" :description "Ring Jetty adapter." :url "http://github.com/mmcgrana/ring" - :dependencies [[ring/ring-core "0.3.6"] - [ring/ring-servlet "0.3.6"] + :dependencies [[ring/ring-core "0.3.7"] + [ring/ring-servlet "0.3.7"] [org.mortbay.jetty/jetty "6.1.26"] [org.mortbay.jetty/jetty-util "6.1.26"]] :dev-dependencies [[clj-http "0.1.1"]]) diff --git a/ring-servlet/project.clj b/ring-servlet/project.clj index fd54f96b..d521badf 100644 --- a/ring-servlet/project.clj +++ b/ring-servlet/project.clj @@ -1,5 +1,5 @@ -(defproject ring/ring-servlet "0.3.6" +(defproject ring/ring-servlet "0.3.7" :description "Ring servlet utilities." :url "http://github.com/mmcgrana/ring" - :dependencies [[ring/ring-core "0.3.6"] + :dependencies [[ring/ring-core "0.3.7"] [javax.servlet/servlet-api "2.5"]])