diff --git a/HISTORY.md b/HISTORY.md index 1df4d994..3cfb3648 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,3 +1,9 @@ +## 1.1.0 (2012-05-XX) + +* Added PATCH route macro +* Added OPTION route macro +* Added low-level make-route function + ## 1.0.4 (2012-05-06) * Fixed context macro to allow lists for prefix diff --git a/README.md b/README.md index e2d5105a..42ecfeca 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ applications to be composed of small, independent parts. Add the following dependency to your `project.clj` file: - [compojure "1.0.4"] + [compojure "1.1.0-RC1"] ## Documentation diff --git a/project.clj b/project.clj index eed68ada..a5bcd185 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject compojure "1.0.4" +(defproject compojure "1.1.0-RC1" :description "A concise web framework for Clojure" :url "https://github.com/weavejester/compojure" :dependencies [[org.clojure/clojure "1.2.1"]