diff --git a/CHANGELOG.md b/CHANGELOG.md index 5593ce2c..f7c2e801 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,16 @@ -## 0.24.1-SNAPSHOT +## 0.24.1 (29.11.2015) +**[compare](https://github.com/metosin/compojure-api/compare/0.24.1...0.24.0)** + +* uses [`[Ring-Swagger "0.22.1"]`](https://github.com/metosin/ring-swagger/blob/master/CHANGELOG.md#0221-29112015) * `clojure.tools.logging` is used with default uncaugt exception handling if it's found on the classpath. Fixes [#172](https://github.com/metosin/compojure-api/issues/172). * Both `api` and `defapi` produce identical swagger-docs. Fixes [#159](https://github.com/metosin/compojure-api/issues/159) * allow any swagger data to be overriden at runtime either via swagger-docs or via middlewares. Fixes [#170](https://github.com/metosin/compojure-api/issues/170). ```clojure +[metosin/ring-swagger "0.22.1"] is available but we use "0.22.0" +[metosin/ring-swagger-ui "2.1.3-4"] is available but we use "2.1.3-2" [prismatic/plumbing "0.5.2] is available but we use "0.5.1" ``` diff --git a/project.clj b/project.clj index b140ebfb..276dbced 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject metosin/compojure-api "0.24.1-SNAPSHOT" +(defproject metosin/compojure-api "0.24.1" :description "Compojure Api" :url "https://github.com/metosin/compojure-api" :license {:name "Eclipse Public License" @@ -13,17 +13,17 @@ [org.tobereplaced/lettercase "1.0.0"] [frankiesardo/linked "1.2.6"] [metosin/ring-http-response "0.6.5"] - [metosin/ring-swagger "0.22.1-SNAPSHOT"] + [metosin/ring-swagger "0.22.1"] [metosin/schema-tools "0.7.0"] [ring-middleware-format "0.7.0"] [backtick "0.3.3"] - [metosin/ring-swagger-ui "2.1.3-2"]] + [metosin/ring-swagger-ui "2.1.3-4"]] :profiles {:uberjar {:aot :all :ring {:handler examples.thingie/app} :source-paths ["examples/src"] :dependencies [[org.clojure/clojure "1.7.0"] [http-kit "2.1.19"] - [com.stuartsierra/component "0.3.0"]]} + [com.stuartsierra/component "0.3.1"]]} :dev {:repl-options {:init-ns user} :plugins [[lein-clojars "0.9.1"] [lein-midje "3.2"] @@ -34,7 +34,7 @@ [javax.servlet/servlet-api "2.5"] [midje "1.8.2"] [metosin/scjsv "0.2.0"] - [com.stuartsierra/component "0.3.0"] + [com.stuartsierra/component "0.3.1"] [reloaded.repl "0.2.1"] [http-kit "2.1.19"] ; Required when using with Java 1.6