Skip to content

Commit 92206a9

Browse files
committed
[release] 0.0.7
1 parent 3fabb61 commit 92206a9

File tree

3 files changed

+7
-11
lines changed

3 files changed

+7
-11
lines changed

README.md

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,6 @@ A tiny library converting [OpenAPI](https://www.openapis.org/) route definitions
44

55
Suitable for [spec-first](https://www.atlassian.com/blog/technology/spec-first-api-development) servers.
66

7-
## Status
8-
9-
Experimental
10-
117
## Features
128

139
- Read OpenAPI 3 definitions as JSON or YAML
@@ -24,25 +20,25 @@ Any contributions are much much welcome and appreciated!
2420
## Installation
2521
Leiningen/Boot
2622
```clojure
27-
[org.clojars.lispyclouds/navi "0.0.6"]
23+
[org.clojars.lispyclouds/navi "0.0.7"]
2824
```
2925

3026
Clojure CLI/deps.edn
3127
```clojure
32-
{org.clojars.lispyclouds/navi {:mvn/version "0.0.6"}}
28+
{org.clojars.lispyclouds/navi {:mvn/version "0.0.7"}}
3329
```
3430

3531
Gradle
3632
```groovy
37-
compile 'org.clojars.lispyclouds:navi:0.0.6'
33+
compile 'org.clojars.lispyclouds:navi:0.0.7'
3834
```
3935

4036
Maven
4137
```xml
4238
<dependency>
4339
<groupId>org.clojars.lispyclouds</groupId>
4440
<artifactId>navi</artifactId>
45-
<version>0.0.6</version>
41+
<version>0.0.7</version>
4642
</dependency>
4743
```
4844

@@ -197,7 +193,7 @@ Bootstrapping a Jetty server:
197193

198194
deps.edn used for this example:
199195
```edn
200-
{:deps {org.clojars.lispyclouds/navi {:mvn/version "0.0.6"}
196+
{:deps {org.clojars.lispyclouds/navi {:mvn/version "0.0.7"}
201197
metosin/reitit-core {:mvn/version "0.6.0"}
202198
metosin/reitit-http {:mvn/version "0.6.0"}
203199
metosin/reitit-interceptors {:mvn/version "0.6.0"}

project.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
; license that can be found in the LICENSE file or at
55
; https://opensource.org/licenses/MIT.
66

7-
(defproject org.clojars.lispyclouds/navi "0.0.6"
7+
(defproject org.clojars.lispyclouds/navi "0.0.7"
88
:author "Rahul De <[email protected]>"
99
:url "https://github.com/lispyclouds/navi"
1010
:description "A tiny library converting OpenAPI route definitions to Reitit routes."

src/navi/core.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@
244244
(catch Exception e
245245
(throw (ex-info (str "Exception processing operation "
246246
(pr-str (.getOperationId op))
247-
": "(ex-message e))
247+
": " (ex-message e))
248248
{:operation op}
249249
e)))))
250250

0 commit comments

Comments
 (0)