Skip to content

Commit a86fd02

Browse files
committed
[release] 0.0.5
1 parent c840646 commit a86fd02

File tree

2 files changed

+7
-13
lines changed

2 files changed

+7
-13
lines changed

README.md

+6-12
Original file line numberDiff line numberDiff line change
@@ -14,42 +14,36 @@ Experimental
1414
- Remote and relative [refs](https://swagger.io/docs/specification/using-ref/)
1515
- Request coercions powered by [Malli](https://github.com/metosin/malli)
1616
- requestBody coercion
17-
- The following OpenAPI types are currently supported:
18-
- string
19-
- integer
20-
- array
21-
- object
22-
- uuid
17+
- A fair set of OpenAPI types are currently supported, please raise an issue if something is unsupported
2318

2419
Currently unsupported:
2520
- Response coercions
2621
- Other coercion libs
27-
- A lot more of the OpenAPI spec
2822

2923
Any contributions are much much welcome and appreciated!
3024

3125
## Installation
3226
Leiningen/Boot
3327
```clojure
34-
[org.clojars.lispyclouds/navi "0.0.4"]
28+
[org.clojars.lispyclouds/navi "0.0.5"]
3529
```
3630

3731
Clojure CLI/deps.edn
3832
```clojure
39-
{org.clojars.lispyclouds/navi {:mvn/version "0.0.4"}}
33+
{org.clojars.lispyclouds/navi {:mvn/version "0.0.5"}}
4034
```
4135

4236
Gradle
4337
```groovy
44-
compile 'org.clojars.lispyclouds:navi:0.0.4'
38+
compile 'org.clojars.lispyclouds:navi:0.0.5'
4539
```
4640

4741
Maven
4842
```xml
4943
<dependency>
5044
<groupId>org.clojars.lispyclouds</groupId>
5145
<artifactId>navi</artifactId>
52-
<version>0.0.4</version>
46+
<version>0.0.5</version>
5347
</dependency>
5448
```
5549

@@ -204,7 +198,7 @@ Bootstrapping a Jetty server:
204198

205199
deps.edn used for this example:
206200
```edn
207-
{:deps {org.clojars.lispyclouds/navi {:mvn/version "0.0.4"}
201+
{:deps {org.clojars.lispyclouds/navi {:mvn/version "0.0.5"}
208202
metosin/reitit-core {:mvn/version "0.6.0"}
209203
metosin/reitit-http {:mvn/version "0.6.0"}
210204
metosin/reitit-interceptors {:mvn/version "0.6.0"}

project.clj

+1-1
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.4"
7+
(defproject org.clojars.lispyclouds/navi "0.0.5"
88
:author "Rahul De <rahul@mailbox.org>"
99
:url "https://github.com/lispyclouds/navi"
1010
:description "A tiny library converting OpenAPI route definitions to Reitit routes."

0 commit comments

Comments
 (0)