diff --git a/HISTORY.md b/HISTORY.md index f6856b3..8c02189 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,4 +1,4 @@ -## 1.0.0 (TBA) +## 1.0.0 (2011-12-11) * Multipart parameters with same name correctly create vector of values * Fixed exception when resource-response is passed a directory @@ -10,6 +10,9 @@ * Downgraded Jetty from 6.1.26 to 6.1.25 to solve socket issue * Jetty SSL adapter respects the :host option * Cookies can be set as http-only +* Fixed wrap-params for non-UTF8-encoded POST requests +* Fixed wrap-multipart-params bug that occurs in Clojure 1.3.0 +* Better error reporting on invalid cookie attributes in wrap-cookies ## 0.3.11 (2011-07-14) diff --git a/README.md b/README.md index 43fb86a..d25f350 100644 --- a/README.md +++ b/README.md @@ -91,11 +91,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 "1.0.0-RC5"] + [ring/ring-core "1.0.0"] To include all of them, add: - [ring "1.0.0-RC5"] + [ring "1.0.0"] ## Development diff --git a/project.clj b/project.clj index 6a74275..eda2b1b 100644 --- a/project.clj +++ b/project.clj @@ -1,11 +1,11 @@ -(defproject ring "1.0.0-RC5" +(defproject ring "1.0.0" :description "A Clojure web applications library." :url "http://github.com/mmcgrana/ring" :dependencies - [[ring/ring-core "1.0.0-RC5"] - [ring/ring-devel "1.0.0-RC5"] - [ring/ring-jetty-adapter "1.0.0-RC5"] - [ring/ring-servlet "1.0.0-RC5"]] + [[ring/ring-core "1.0.0"] + [ring/ring-devel "1.0.0"] + [ring/ring-jetty-adapter "1.0.0"] + [ring/ring-servlet "1.0.0"]] :dev-dependencies [[lein-sub "0.1.1"] [codox "0.3.0"]] diff --git a/ring-core/project.clj b/ring-core/project.clj index a9b5ec2..c4ceb0a 100644 --- a/ring-core/project.clj +++ b/ring-core/project.clj @@ -1,4 +1,4 @@ -(defproject ring/ring-core "1.0.0-RC5" +(defproject ring/ring-core "1.0.0" :description "Ring core libraries." :url "http://github.com/mmcgrana/ring" :dependencies [[org.clojure/clojure "1.2.1"] diff --git a/ring-devel/project.clj b/ring-devel/project.clj index 40fd9ad..be0cdc9 100644 --- a/ring-devel/project.clj +++ b/ring-devel/project.clj @@ -1,7 +1,7 @@ -(defproject ring/ring-devel "1.0.0-RC5" +(defproject ring/ring-devel "1.0.0" :description "Ring development and debugging libraries." :url "http://github.com/mmcgrana/ring" - :dependencies [[ring/ring-core "1.0.0-RC5"] + :dependencies [[ring/ring-core "1.0.0"] [hiccup "0.3.7"] [clj-stacktrace "0.2.2"] [ns-tracker "0.1.1"]]) diff --git a/ring-jetty-adapter/project.clj b/ring-jetty-adapter/project.clj index 2519d0d..d2e1946 100644 --- a/ring-jetty-adapter/project.clj +++ b/ring-jetty-adapter/project.clj @@ -1,8 +1,8 @@ -(defproject ring/ring-jetty-adapter "1.0.0-RC5" +(defproject ring/ring-jetty-adapter "1.0.0" :description "Ring Jetty adapter." :url "http://github.com/mmcgrana/ring" - :dependencies [[ring/ring-core "1.0.0-RC5"] - [ring/ring-servlet "1.0.0-RC5"] + :dependencies [[ring/ring-core "1.0.0"] + [ring/ring-servlet "1.0.0"] [org.mortbay.jetty/jetty "6.1.25"] [org.mortbay.jetty/jetty-util "6.1.25"]] :dev-dependencies [[clj-http "0.1.3"]]) diff --git a/ring-servlet/project.clj b/ring-servlet/project.clj index cb17915..628f7d9 100644 --- a/ring-servlet/project.clj +++ b/ring-servlet/project.clj @@ -1,5 +1,5 @@ -(defproject ring/ring-servlet "1.0.0-RC5" +(defproject ring/ring-servlet "1.0.0" :description "Ring servlet utilities." :url "http://github.com/mmcgrana/ring" - :dependencies [[ring/ring-core "1.0.0-RC5"] + :dependencies [[ring/ring-core "1.0.0"] [javax.servlet/servlet-api "2.5"]])