Skip to content

Commit

Permalink
Release 1.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
weavejester committed May 12, 2017
1 parent 978c74b commit 7363948
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 15 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,8 @@
## 1.6.1 (2017-05-12)

* Fixed unreported ClosedChannelExceptions in async Jetty
* Updated Jetty to 9.2.21.v201701209

## 1.6.0 (2017-05-02)

* Functionally the same as 1.6.0-RC3.
Expand Down
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -39,11 +39,11 @@ To resolve this, include the following dependency in your dev profile:
To include one of the above libraries, for example `ring-core`, add
the following to your `:dependencies`:

[ring/ring-core "1.6.0"]
[ring/ring-core "1.6.1"]

To include all of them:

[ring "1.6.0"]
[ring "1.6.1"]

## Documentation

Expand Down
10 changes: 5 additions & 5 deletions project.clj
@@ -1,13 +1,13 @@
(defproject ring "1.6.0"
(defproject ring "1.6.1"
:description "A Clojure web applications library."
:url "https://github.com/ring-clojure/ring"
:license {:name "The MIT License"
:url "http://opensource.org/licenses/MIT"}
:dependencies [[org.clojure/clojure "1.5.1"]
[ring/ring-core "1.6.0"]
[ring/ring-devel "1.6.0"]
[ring/ring-jetty-adapter "1.6.0"]
[ring/ring-servlet "1.6.0"]]
[ring/ring-core "1.6.1"]
[ring/ring-devel "1.6.1"]
[ring/ring-jetty-adapter "1.6.1"]
[ring/ring-servlet "1.6.1"]]
:plugins [[lein-sub "0.2.4"]
[lein-codox "0.10.3"]]
:sub ["ring-core"
Expand Down
2 changes: 1 addition & 1 deletion ring-core/project.clj
@@ -1,4 +1,4 @@
(defproject ring/ring-core "1.6.0"
(defproject ring/ring-core "1.6.1"
:description "Ring core libraries."
:url "https://github.com/ring-clojure/ring"
:scm {:dir ".."}
Expand Down
4 changes: 2 additions & 2 deletions ring-devel/project.clj
@@ -1,11 +1,11 @@
(defproject ring/ring-devel "1.6.0"
(defproject ring/ring-devel "1.6.1"
:description "Ring development and debugging libraries."
:url "https://github.com/ring-clojure/ring"
:scm {:dir ".."}
:license {:name "The MIT License"
:url "http://opensource.org/licenses/MIT"}
:dependencies [[org.clojure/clojure "1.5.1"]
[ring/ring-core "1.6.0"]
[ring/ring-core "1.6.1"]
[hiccup "1.0.5"]
[clj-stacktrace "0.2.8"]
[ns-tracker "0.3.1"]]
Expand Down
6 changes: 3 additions & 3 deletions ring-jetty-adapter/project.clj
@@ -1,12 +1,12 @@
(defproject ring/ring-jetty-adapter "1.6.0"
(defproject ring/ring-jetty-adapter "1.6.1"
:description "Ring Jetty adapter."
:url "https://github.com/ring-clojure/ring"
:scm {:dir ".."}
:license {:name "The MIT License"
:url "http://opensource.org/licenses/MIT"}
:dependencies [[org.clojure/clojure "1.5.1"]
[ring/ring-core "1.6.0"]
[ring/ring-servlet "1.6.0"]
[ring/ring-core "1.6.1"]
[ring/ring-servlet "1.6.1"]
[org.eclipse.jetty/jetty-server "9.2.21.v20170120"]]
:aliases {"test-all" ["with-profile" "default:+1.6:+1.7:+1.8" "test"]}
:profiles
Expand Down
4 changes: 2 additions & 2 deletions ring-servlet/project.clj
@@ -1,11 +1,11 @@
(defproject ring/ring-servlet "1.6.0"
(defproject ring/ring-servlet "1.6.1"
:description "Ring servlet utilities."
:url "https://github.com/ring-clojure/ring"
:scm {:dir ".."}
:license {:name "The MIT License"
:url "http://opensource.org/licenses/MIT"}
:dependencies [[org.clojure/clojure "1.5.1"]
[ring/ring-core "1.6.0"]]
[ring/ring-core "1.6.1"]]
:aliases {"test-all" ["with-profile" "default:+1.6:+1.7:+1.8" "test"]}
:profiles
{:provided {:dependencies [[javax.servlet/javax.servlet-api "3.1.0"]]}
Expand Down

0 comments on commit 7363948

Please sign in to comment.