Skip to content

Commit

Permalink
Release 0.3.4.
Browse files Browse the repository at this point in the history
  • Loading branch information
weavejester committed Nov 16, 2010
1 parent d66cf3f commit 00cae9b
Show file tree
Hide file tree
Showing 8 changed files with 24 additions and 19 deletions.
5 changes: 5 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 0.3.4 (2010-11-16)

* wrap-cookies no longer overwrites existing Set-Cookie header
* String response bodies no longer have extra newline

## 0.3.3 (2010-10-31)

* Added console logging for ring.handler.dump and ring.middleware.stacktrace
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 `:dependences`:

[ring/ring-core "0.3.3"]
[ring/ring-core "0.3.4"]

To include all of them, add:

[ring "0.3.3"]
[ring "0.3.4"]

## Development

Expand Down
12 changes: 6 additions & 6 deletions project.clj
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
(defproject ring "0.3.3"
(defproject ring "0.3.4"
:description "A Clojure web applications library."
:url "http://github.com/mmcgrana/ring"
:dependencies
[[ring/ring-core "0.3.3"]
[ring/ring-devel "0.3.3"]
[ring/ring-httpcore-adapter "0.3.3"]
[ring/ring-jetty-adapter "0.3.3"]
[ring/ring-servlet "0.3.3"]]
[[ring/ring-core "0.3.4"]
[ring/ring-devel "0.3.4"]
[ring/ring-httpcore-adapter "0.3.4"]
[ring/ring-jetty-adapter "0.3.4"]
[ring/ring-servlet "0.3.4"]]
:dev-dependencies
[[autodoc "0.7.1"]]
:autodoc
Expand Down
2 changes: 1 addition & 1 deletion ring-core/project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject ring/ring-core "0.3.3"
(defproject ring/ring-core "0.3.4"
:description "Ring core libraries."
:url "http://github.com/mmcgrana/ring"
:dependencies [[org.clojure/clojure "1.2.0"]
Expand Down
6 changes: 3 additions & 3 deletions ring-devel/project.clj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
(defproject ring/ring-devel "0.3.3"
(defproject ring/ring-devel "0.3.4"
:description "Ring development and debugging libraries."
:url "http://github.com/mmcgrana/ring"
:dependencies [[ring/ring-core "0.3.3"]
[hiccup "0.3.0"]
:dependencies [[ring/ring-core "0.3.4"]
[hiccup "0.3.1"]
[clj-stacktrace "0.2.0"]])
4 changes: 2 additions & 2 deletions ring-httpcore-adapter/project.clj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
(defproject ring/ring-httpcore-adapter "0.3.3"
(defproject ring/ring-httpcore-adapter "0.3.4"
:description "Ring HttpCore adapter."
:url "http://github.com/mmcgrana/ring"
:dependencies [[ring/ring-core "0.3.3"]
:dependencies [[ring/ring-core "0.3.4"]
[org.apache.httpcomponents/httpcore "4.0.1"]
[org.apache.httpcomponents/httpcore-nio "4.0.1"]])
6 changes: 3 additions & 3 deletions ring-jetty-adapter/project.clj
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
(defproject ring/ring-jetty-adapter "0.3.3"
(defproject ring/ring-jetty-adapter "0.3.4"
:description "Ring Jetty adapter."
:url "http://github.com/mmcgrana/ring"
:dependencies [[ring/ring-core "0.3.3"]
[ring/ring-servlet "0.3.3"]
:dependencies [[ring/ring-core "0.3.4"]
[ring/ring-servlet "0.3.4"]
[org.mortbay.jetty/jetty "6.1.14"]
[org.mortbay.jetty/jetty-util "6.1.14"]]
:dev-dependencies [[clj-http "0.1.1"]])
4 changes: 2 additions & 2 deletions ring-servlet/project.clj
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
(defproject ring/ring-servlet "0.3.3"
(defproject ring/ring-servlet "0.3.4"
:description "Ring servlet utilities."
:url "http://github.com/mmcgrana/ring"
:dependencies [[ring/ring-core "0.3.3"]
:dependencies [[ring/ring-core "0.3.4"]
[javax.servlet/servlet-api "2.5"]])

0 comments on commit 00cae9b

Please sign in to comment.