File tree 2 files changed +7
-7
lines changed
2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ Suitable for [spec-first](https://www.atlassian.com/blog/technology/spec-first-a
15
15
16
16
Currently unsupported (raise an issue if needed!):
17
17
- Other coercion libs
18
- - ` oneOf ` composed schema
18
+ - ` oneOf ` composed schema (mostly can be handled by ` anyOf ` )
19
19
- Some string formats:
20
20
- DateTime
21
21
- Email
@@ -26,25 +26,25 @@ Any contributions are much much welcome and appreciated!
26
26
## Installation
27
27
Leiningen/Boot
28
28
``` clojure
29
- [org.clojars.lispyclouds/navi " 0.0.10 " ]
29
+ [org.clojars.lispyclouds/navi " 0.1.0 " ]
30
30
```
31
31
32
32
Clojure CLI/deps.edn
33
33
``` clojure
34
- {org.clojars.lispyclouds/navi {:mvn/version " 0.0.10 " }}
34
+ {org.clojars.lispyclouds/navi {:mvn/version " 0.1.0 " }}
35
35
```
36
36
37
37
Gradle
38
38
``` groovy
39
- compile 'org.clojars.lispyclouds:navi:0.0.10 '
39
+ compile 'org.clojars.lispyclouds:navi:0.1.0 '
40
40
```
41
41
42
42
Maven
43
43
``` xml
44
44
<dependency >
45
45
<groupId >org.clojars.lispyclouds</groupId >
46
46
<artifactId >navi</artifactId >
47
- <version >0.0.10 </version >
47
+ <version >0.1.0 </version >
48
48
</dependency >
49
49
```
50
50
@@ -199,7 +199,7 @@ Bootstrapping a Jetty server:
199
199
200
200
deps.edn used for this example:
201
201
``` edn
202
- {:deps {org.clojars.lispyclouds/navi {:mvn/version " 0.0.10 " }
202
+ {:deps {org.clojars.lispyclouds/navi {:mvn/version " 0.1.0 " }
203
203
metosin/reitit-core {:mvn/version " 0.6.0" }
204
204
metosin/reitit-http {:mvn/version " 0.6.0" }
205
205
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.10 "
7
+ (defproject org.clojars.lispyclouds /navi " 0.1.0 "
8
8
:author " Rahul De <rahul@mailbox.org>"
9
9
:url " https://github.com/lispyclouds/navi"
10
10
:description " A tiny library converting OpenAPI route definitions to Reitit routes."
You can’t perform that action at this time.
0 commit comments