Permalink
Browse files

Release 0.3.2.

  • Loading branch information...
1 parent 8a7620c commit 531fbf4e637228383bd2c7b918103ae8e9197aa0 @weavejester weavejester committed Oct 11, 2010
Showing with 23 additions and 18 deletions.
  1. +4 −0 HISTORY.md
  2. +3 −2 README.md
  3. +6 −6 project.clj
  4. +1 −1 ring-core/project.clj
  5. +2 −2 ring-devel/project.clj
  6. +2 −2 ring-httpcore-adapter/project.clj
  7. +3 −3 ring-jetty-adapter/project.clj
  8. +2 −2 ring-servlet/project.clj
View
4 HISTORY.md
@@ -1,3 +1,7 @@
+## 0.3.2 (2010-10-11)
+
+* Added nested-params middleware
+
## 0.3.1 (2010-09-26)
* Fixed multipart string encoding bug
View
5 README.md
@@ -63,6 +63,7 @@ To see a more sophisticated Ring app, run:
* `ring.middleware.params`: Parse query and form params.
* `ring.middleware.multipart-params`: Parse multipart params.
* `ring.middleware.keyword-params`: Convert string param keys to keywords.
+* `ring.middleware.nested-params`: Convert a flat map of parameters into a nested map of parameters.
* `ring.middleware.cookies`: Manage browser cookies.
* `ring.middleware.session`: Manage user sessions. Memory and cookie session stores are available by default.
* `ring.middleware.flash`: Adds flash message support to sessions.
@@ -91,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 `:dependences`:
- [ring/ring-core "0.3.1"]
+ [ring/ring-core "0.3.2"]
To include all of them, add:
- [ring "0.3.1"]
+ [ring "0.3.2"]
## Development
View
12 project.clj
@@ -1,12 +1,12 @@
-(defproject ring "0.3.1"
+(defproject ring "0.3.2"
:description "A Clojure web applications library."
:url "http://github.com/mmcgrana/ring"
:dependencies
- [[ring/ring-core "0.3.1"]
- [ring/ring-devel "0.3.1"]
- [ring/ring-httpcore-adapter "0.3.1"]
- [ring/ring-jetty-adapter "0.3.1"]
- [ring/ring-servlet "0.3.1"]]
+ [[ring/ring-core "0.3.2"]
+ [ring/ring-devel "0.3.2"]
+ [ring/ring-httpcore-adapter "0.3.2"]
+ [ring/ring-jetty-adapter "0.3.2"]
+ [ring/ring-servlet "0.3.2"]]
:dev-dependencies
[[autodoc "0.7.1"]
[lein-clojars "0.6.0"]]
View
2 ring-core/project.clj
@@ -1,4 +1,4 @@
-(defproject ring/ring-core "0.3.1"
+(defproject ring/ring-core "0.3.2"
:description "Ring core libraries."
:url "http://github.com/mmcgrana/ring"
:dependencies [[org.clojure/clojure "1.2.0"]
View
4 ring-devel/project.clj
@@ -1,7 +1,7 @@
-(defproject ring/ring-devel "0.3.1"
+(defproject ring/ring-devel "0.3.2"
:description "Ring development and debugging libraries."
:url "http://github.com/mmcgrana/ring"
- :dependencies [[ring/ring-core "0.3.1"]
+ :dependencies [[ring/ring-core "0.3.2"]
[hiccup "0.3.0"]
[clj-stacktrace "0.2.0"]]
:dev-dependencies [[lein-clojars "0.6.0"]])
View
4 ring-httpcore-adapter/project.clj
@@ -1,7 +1,7 @@
-(defproject ring/ring-httpcore-adapter "0.3.1"
+(defproject ring/ring-httpcore-adapter "0.3.2"
:description "Ring HttpCore adapter."
:url "http://github.com/mmcgrana/ring"
- :dependencies [[ring/ring-core "0.3.1"]
+ :dependencies [[ring/ring-core "0.3.2"]
[org.apache.httpcomponents/httpcore "4.0.1"]
[org.apache.httpcomponents/httpcore-nio "4.0.1"]]
:dev-dependencies [[lein-clojars "0.6.0"]])
View
6 ring-jetty-adapter/project.clj
@@ -1,8 +1,8 @@
-(defproject ring/ring-jetty-adapter "0.3.1"
+(defproject ring/ring-jetty-adapter "0.3.2"
:description "Ring Jetty adapter."
:url "http://github.com/mmcgrana/ring"
- :dependencies [[ring/ring-core "0.3.1"]
- [ring/ring-servlet "0.3.1"]
+ :dependencies [[ring/ring-core "0.3.2"]
+ [ring/ring-servlet "0.3.2"]
[org.mortbay.jetty/jetty "6.1.14"]
[org.mortbay.jetty/jetty-util "6.1.14"]]
:dev-dependencies [[lein-clojars "0.6.0"]
View
4 ring-servlet/project.clj
@@ -1,7 +1,7 @@
-(defproject ring/ring-servlet "0.3.1"
+(defproject ring/ring-servlet "0.3.2"
:description "Ring servlet utilities."
:url "http://github.com/mmcgrana/ring"
- :dependencies [[ring/ring-core "0.3.1"]
+ :dependencies [[ring/ring-core "0.3.2"]
[javax.servlet/servlet-api "2.5"]]
:dev-dependencies [[lein-clojars "0.6.0"]
[swank-clojure "1.2.1"]])

0 comments on commit 531fbf4

Please sign in to comment.