Skip to content

Commit

Permalink
Release 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
weavejester committed Oct 1, 2014
1 parent 8a30b19 commit ab3afef
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 4 deletions.
12 changes: 12 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
## 1.2.0 (2014-10-01)

* Minimum Clojure version is now 1.5.1
* Improved URL and File responses
* Added `rfn` macro
* Added `wrap-routes` function
* Made `compile-route` function public
* Updated Clout dependency to 2.0.0
* Fixed remaining context URL encoding bug
* Deprecated `compojure.handler` namespace in favor of Ring-Defaults
* Warning for using `*` as an route argument

## 1.1.9 (2014-09-07)

* `_method` parameter works for multipart forms
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ applications to be composed of small, independent parts.

Add the following dependency to your `project.clj` file:

[compojure "1.1.9"]
[compojure "1.2.0"]

## Documentation

Expand Down
6 changes: 3 additions & 3 deletions project.clj
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
(defproject compojure "1.1.9"
(defproject compojure "1.2.0"
:description "A concise routing library for Ring"
:url "https://github.com/weavejester/compojure"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.5.1"]
[org.clojure/tools.macro "0.1.5"]
[clout "2.0.0-SNAPSHOT"]
[clout "2.0.0"]
[medley "0.5.1"]
[ring/ring-core "1.3.1"]
[ring/ring-codec "1.0.0"]]
:plugins [[codox "0.8.10"]]
:codox {:src-dir-uri "http://github.com/weavejester/compojure/blob/1.1.9/"
:codox {:src-dir-uri "http://github.com/weavejester/compojure/blob/1.2.0/"
:src-linenum-anchor-prefix "L"}
:profiles
{:dev {:dependencies [[ring-mock "0.1.5"]
Expand Down

0 comments on commit ab3afef

Please sign in to comment.