Skip to content

Commit

Permalink
Release 0.3.5.
Browse files Browse the repository at this point in the history
  • Loading branch information
weavejester committed Nov 27, 2010
1 parent c0df738 commit edabc35
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 15 deletions.
7 changes: 7 additions & 0 deletions HISTORY.md
@@ -1,3 +1,10 @@
## 0.3.5 (2010-11-27)

* Context classloader now used for resource responses
* Removed HttpCore adapter from repository
* InputStream response body guaranteed to close
* Updated Jetty dependencies to 6.1.26

## 0.3.4 (2010-11-16)

* wrap-cookies no longer overwrites existing Set-Cookie header
Expand Down
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -88,11 +88,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.4"]
[ring/ring-core "0.3.5"]

To include all of them, add:

[ring "0.3.4"]
[ring "0.3.5"]

## Development

Expand Down
10 changes: 5 additions & 5 deletions project.clj
@@ -1,11 +1,11 @@
(defproject ring "0.3.4"
(defproject ring "0.3.5"
:description "A Clojure web applications library."
:url "http://github.com/mmcgrana/ring"
:dependencies
[[ring/ring-core "0.3.4"]
[ring/ring-devel "0.3.4"]
[ring/ring-jetty-adapter "0.3.4"]
[ring/ring-servlet "0.3.4"]]
[[ring/ring-core "0.3.5"]
[ring/ring-devel "0.3.5"]
[ring/ring-jetty-adapter "0.3.5"]
[ring/ring-servlet "0.3.5"]]
:dev-dependencies
[[autodoc "0.7.1" :exclusions [org.clojure/clojure
org.clojure/clojure-contrib]]]
Expand Down
2 changes: 1 addition & 1 deletion ring-core/project.clj
@@ -1,4 +1,4 @@
(defproject ring/ring-core "0.3.4"
(defproject ring/ring-core "0.3.5"
:description "Ring core libraries."
:url "http://github.com/mmcgrana/ring"
:dependencies [[org.clojure/clojure "1.2.0"]
Expand Down
4 changes: 2 additions & 2 deletions ring-devel/project.clj
@@ -1,6 +1,6 @@
(defproject ring/ring-devel "0.3.4"
(defproject ring/ring-devel "0.3.5"
:description "Ring development and debugging libraries."
:url "http://github.com/mmcgrana/ring"
:dependencies [[ring/ring-core "0.3.4"]
:dependencies [[ring/ring-core "0.3.5"]
[hiccup "0.3.1"]
[clj-stacktrace "0.2.0"]])
6 changes: 3 additions & 3 deletions ring-jetty-adapter/project.clj
@@ -1,8 +1,8 @@
(defproject ring/ring-jetty-adapter "0.3.4"
(defproject ring/ring-jetty-adapter "0.3.5"
:description "Ring Jetty adapter."
:url "http://github.com/mmcgrana/ring"
:dependencies [[ring/ring-core "0.3.4"]
[ring/ring-servlet "0.3.4"]
:dependencies [[ring/ring-core "0.3.5"]
[ring/ring-servlet "0.3.5"]
[org.mortbay.jetty/jetty "6.1.26"]
[org.mortbay.jetty/jetty-util "6.1.26"]]
:dev-dependencies [[clj-http "0.1.1"]])
4 changes: 2 additions & 2 deletions ring-servlet/project.clj
@@ -1,5 +1,5 @@
(defproject ring/ring-servlet "0.3.4"
(defproject ring/ring-servlet "0.3.5"
:description "Ring servlet utilities."
:url "http://github.com/mmcgrana/ring"
:dependencies [[ring/ring-core "0.3.4"]
:dependencies [[ring/ring-core "0.3.5"]
[javax.servlet/servlet-api "2.5"]])

0 comments on commit edabc35

Please sign in to comment.