Skip to content

Commit

Permalink
Release 0.24.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ikitommi committed Nov 29, 2015
1 parent 0134b71 commit ea4dd49
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 6 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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"
```
Expand Down
10 changes: 5 additions & 5 deletions project.clj
Original file line number Diff line number Diff line change
@@ -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"
Expand All @@ -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"]
Expand All @@ -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
Expand Down

0 comments on commit ea4dd49

Please sign in to comment.