Skip to content

Commit

Permalink
Release 0.2.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
mmcgrana committed Mar 28, 2010
1 parent b4b31e8 commit 998bd11
Show file tree
Hide file tree
Showing 9 changed files with 20 additions and 20 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Expand Up @@ -4,4 +4,4 @@ ring-*.jar
ring.jar
ring-standalone.jar
pom.xml
autodoc
autodoc
2 changes: 1 addition & 1 deletion HISTORY.md
@@ -1,4 +1,4 @@
## 0.2.0 (2010-03-17)
## 0.2.0 (2010-03-28)

* Distribute Ring as separate Maven artifacts: `ring-core`, `ring-servlet`, `ring-devel`, `ring-jetty-adapter`, and `ring-http-core-adapter`
* The `ring` artifact now just depends on all of these granular artifacts
Expand Down
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -90,11 +90,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.2.0-RC2"]
[ring/ring-core "0.2.0"]

To include all of them, add:

[ring/ring "0.2.0-RC2"]
[ring/ring "0.2.0"]

## Development

Expand Down
12 changes: 6 additions & 6 deletions project.clj
@@ -1,12 +1,12 @@
(defproject ring "0.2.0-RC2"
(defproject ring "0.2.0"
:description "A Clojure web applications library."
:url "http://github.com/mmcgrana/ring"
:dependencies
[[ring/ring-core "0.2.0-RC2"]
[ring/ring-devel "0.2.0-RC2"]
[ring/ring-httpcore-adapter "0.2.0-RC2"]
[ring/ring-jetty-adapter "0.2.0-RC2"]
[ring/ring-servlet "0.2.0-RC2"]]
[[ring/ring-core "0.2.0"]
[ring/ring-devel "0.2.0"]
[ring/ring-httpcore-adapter "0.2.0"]
[ring/ring-jetty-adapter "0.2.0"]
[ring/ring-servlet "0.2.0"]]
:dev-dependencies
[[autodoc "0.7.0"]
[lein-clojars "0.5.0"]]
Expand Down
2 changes: 1 addition & 1 deletion ring-core/project.clj
@@ -1,4 +1,4 @@
(defproject ring/ring-core "0.2.0-RC2"
(defproject ring/ring-core "0.2.0"
:description "Ring core libraries."
:url "http://github.com/mmcgrana/ring"
:dependencies [[org.clojure/clojure "1.1.0"]
Expand Down
4 changes: 2 additions & 2 deletions ring-devel/project.clj
@@ -1,7 +1,7 @@
(defproject ring/ring-devel "0.2.0-RC2"
(defproject ring/ring-devel "0.2.0"
:description "Ring development and debugging libraries."
:url "http://github.com/mmcgrana/ring"
:dependencies [[ring/ring-core "0.2.0-RC2"]
:dependencies [[ring/ring-core "0.2.0"]
[clj-html "0.1.0"]
[clj-stacktrace "0.1.0"]]
:dev-dependencies [[lein-clojars "0.5.0"]])
4 changes: 2 additions & 2 deletions ring-httpcore-adapter/project.clj
@@ -1,7 +1,7 @@
(defproject ring/ring-httpcore-adapter "0.2.0-RC2"
(defproject ring/ring-httpcore-adapter "0.2.0"
:description "Ring HttpCore adapter."
:url "http://github.com/mmcgrana/ring"
:dependencies [[ring/ring-core "0.2.0-RC2"]
:dependencies [[ring/ring-core "0.2.0"]
[org.apache.httpcomponents/httpcore "4.0.1"]
[org.apache.httpcomponents/httpcore-nio "4.0.1"]]
:dev-dependencies [[lein-clojars "0.5.0"]])
6 changes: 3 additions & 3 deletions ring-jetty-adapter/project.clj
@@ -1,8 +1,8 @@
(defproject ring/ring-jetty-adapter "0.2.0-RC2"
(defproject ring/ring-jetty-adapter "0.2.0"
:description "Ring Jetty adapter."
:url "http://github.com/mmcgrana/ring"
:dependencies [[ring/ring-core "0.2.0-RC2"]
[ring/ring-servlet "0.2.0-RC2"]
:dependencies [[ring/ring-core "0.2.0"]
[ring/ring-servlet "0.2.0"]
[org.mortbay.jetty/jetty "6.1.14"]
[org.mortbay.jetty/jetty-util "6.1.14"]]
:dev-dependencies [[lein-clojars "0.5.0"]])
4 changes: 2 additions & 2 deletions ring-servlet/project.clj
@@ -1,6 +1,6 @@
(defproject ring/ring-servlet "0.2.0-RC2"
(defproject ring/ring-servlet "0.2.0"
:description "Ring servlet utilities."
:url "http://github.com/mmcgrana/ring"
:dependencies [[ring/ring-core "0.2.0-RC2"]
:dependencies [[ring/ring-core "0.2.0"]
[org.mortbay.jetty/servlet-api-2.5 "6.1.14"]]
:dev-dependencies [[lein-clojars "0.5.0"]])

0 comments on commit 998bd11

Please sign in to comment.