File tree Expand file tree Collapse file tree 3 files changed +7
-11
lines changed Expand file tree Collapse file tree 3 files changed +7
-11
lines changed Original file line number Diff line number Diff line change @@ -4,10 +4,6 @@ A tiny library converting [OpenAPI](https://www.openapis.org/) route definitions
4
4
5
5
Suitable for [ spec-first] ( https://www.atlassian.com/blog/technology/spec-first-api-development ) servers.
6
6
7
- ## Status
8
-
9
- Experimental
10
-
11
7
## Features
12
8
13
9
- Read OpenAPI 3 definitions as JSON or YAML
@@ -24,25 +20,25 @@ Any contributions are much much welcome and appreciated!
24
20
## Installation
25
21
Leiningen/Boot
26
22
``` clojure
27
- [org.clojars.lispyclouds/navi " 0.0.6 " ]
23
+ [org.clojars.lispyclouds/navi " 0.0.7 " ]
28
24
```
29
25
30
26
Clojure CLI/deps.edn
31
27
``` clojure
32
- {org.clojars.lispyclouds/navi {:mvn/version " 0.0.6 " }}
28
+ {org.clojars.lispyclouds/navi {:mvn/version " 0.0.7 " }}
33
29
```
34
30
35
31
Gradle
36
32
``` groovy
37
- compile 'org.clojars.lispyclouds:navi:0.0.6 '
33
+ compile 'org.clojars.lispyclouds:navi:0.0.7 '
38
34
```
39
35
40
36
Maven
41
37
``` xml
42
38
<dependency >
43
39
<groupId >org.clojars.lispyclouds</groupId >
44
40
<artifactId >navi</artifactId >
45
- <version >0.0.6 </version >
41
+ <version >0.0.7 </version >
46
42
</dependency >
47
43
```
48
44
@@ -197,7 +193,7 @@ Bootstrapping a Jetty server:
197
193
198
194
deps.edn used for this example:
199
195
``` edn
200
- {:deps {org.clojars.lispyclouds/navi {:mvn/version " 0.0.6 " }
196
+ {:deps {org.clojars.lispyclouds/navi {:mvn/version " 0.0.7 " }
201
197
metosin/reitit-core {:mvn/version " 0.6.0" }
202
198
metosin/reitit-http {:mvn/version " 0.6.0" }
203
199
metosin/reitit-interceptors {:mvn/version " 0.6.0" }
Original file line number Diff line number Diff line change 4
4
; license that can be found in the LICENSE file or at
5
5
; https://opensource.org/licenses/MIT.
6
6
7
- (defproject org.clojars.lispyclouds /navi " 0.0.6 "
7
+ (defproject org.clojars.lispyclouds /navi " 0.0.7 "
8
8
:author " Rahul De <[email protected] >"
9
9
:url " https://github.com/lispyclouds/navi"
10
10
:description " A tiny library converting OpenAPI route definitions to Reitit routes."
Original file line number Diff line number Diff line change 244
244
(catch Exception e
245
245
(throw (ex-info (str " Exception processing operation "
246
246
(pr-str (.getOperationId op))
247
- " : " (ex-message e))
247
+ " : " (ex-message e))
248
248
{:operation op}
249
249
e)))))
250
250
You can’t perform that action at this time.
0 commit comments