Skip to content

Commit

Permalink
Released 1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
weavejester committed Jun 16, 2012
1 parent e2ee67c commit 386c8fc
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 15 deletions.
5 changes: 5 additions & 0 deletions HISTORY.md
@@ -1,3 +1,8 @@
## 1.1.1 (2012-06-16)

* Fixed bug with url-decoding "$"
* Fixed bug with trust-store password

## 1.1.0 (2012-04-23) ## 1.1.0 (2012-04-23)


* Support for SSL client certificates in Jetty adapter * Support for SSL client certificates in Jetty adapter
Expand Down
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -23,11 +23,11 @@ complete description of the Ring interface.
To include one of the above libraries, for example `ring-core`, add To include one of the above libraries, for example `ring-core`, add
the following to your `:dependencies`: the following to your `:dependencies`:


[ring/ring-core "1.1.0"] [ring/ring-core "1.1.1"]


To include all of them: To include all of them:


[ring "1.1.0"] [ring "1.1.1"]


## Documentation ## Documentation


Expand Down
10 changes: 5 additions & 5 deletions project.clj
@@ -1,11 +1,11 @@
(defproject ring "1.1.0" (defproject ring "1.1.1"
:description "A Clojure web applications library." :description "A Clojure web applications library."
:url "https://github.com/ring-clojure/ring" :url "https://github.com/ring-clojure/ring"
:dependencies :dependencies
[[ring/ring-core "1.1.0"] [[ring/ring-core "1.1.1"]
[ring/ring-devel "1.1.0"] [ring/ring-devel "1.1.1"]
[ring/ring-jetty-adapter "1.1.0"] [ring/ring-jetty-adapter "1.1.1"]
[ring/ring-servlet "1.1.0"]] [ring/ring-servlet "1.1.1"]]
:plugins :plugins
[[lein-sub "0.2.0"] [[lein-sub "0.2.0"]
[codox "0.6.1"]] [codox "0.6.1"]]
Expand Down
2 changes: 1 addition & 1 deletion ring-core/project.clj
@@ -1,4 +1,4 @@
(defproject ring/ring-core "1.1.0" (defproject ring/ring-core "1.1.1"
:description "Ring core libraries." :description "Ring core libraries."
:url "https://github.com/ring-clojure/ring" :url "https://github.com/ring-clojure/ring"
:dependencies [[org.clojure/clojure "1.2.1"] :dependencies [[org.clojure/clojure "1.2.1"]
Expand Down
4 changes: 2 additions & 2 deletions ring-devel/project.clj
@@ -1,7 +1,7 @@
(defproject ring/ring-devel "1.1.0" (defproject ring/ring-devel "1.1.1"
:description "Ring development and debugging libraries." :description "Ring development and debugging libraries."
:url "https://github.com/ring-clojure/ring" :url "https://github.com/ring-clojure/ring"
:dependencies [[ring/ring-core "1.1.0"] :dependencies [[ring/ring-core "1.1.1"]
[hiccup "1.0.0"] [hiccup "1.0.0"]
[clj-stacktrace "0.2.4"] [clj-stacktrace "0.2.4"]
[ns-tracker "0.1.1"]]) [ns-tracker "0.1.1"]])
6 changes: 3 additions & 3 deletions ring-jetty-adapter/project.clj
@@ -1,8 +1,8 @@
(defproject ring/ring-jetty-adapter "1.1.0" (defproject ring/ring-jetty-adapter "1.1.1"
:description "Ring Jetty adapter." :description "Ring Jetty adapter."
:url "https://github.com/ring-clojure/ring" :url "https://github.com/ring-clojure/ring"
:dependencies [[ring/ring-core "1.1.0"] :dependencies [[ring/ring-core "1.1.1"]
[ring/ring-servlet "1.1.0"] [ring/ring-servlet "1.1.1"]
[org.eclipse.jetty/jetty-server "7.6.1.v20120215"]] [org.eclipse.jetty/jetty-server "7.6.1.v20120215"]]
:profiles :profiles
{:dev {:dependencies [[clj-http "0.3.2"]]}}) {:dev {:dependencies [[clj-http "0.3.2"]]}})
4 changes: 2 additions & 2 deletions ring-servlet/project.clj
@@ -1,5 +1,5 @@
(defproject ring/ring-servlet "1.1.0" (defproject ring/ring-servlet "1.1.1"
:description "Ring servlet utilities." :description "Ring servlet utilities."
:url "https://github.com/ring-clojure/ring" :url "https://github.com/ring-clojure/ring"
:dependencies [[ring/ring-core "1.1.0"] :dependencies [[ring/ring-core "1.1.1"]
[javax.servlet/servlet-api "2.5"]]) [javax.servlet/servlet-api "2.5"]])

0 comments on commit 386c8fc

Please sign in to comment.