Skip to content

Commit 7f8c53f

Browse files
committed
[release] 0.0.8
1 parent a568b6a commit 7f8c53f

File tree

2 files changed

+13
-12
lines changed

2 files changed

+13
-12
lines changed

README.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ Suitable for [spec-first](https://www.atlassian.com/blog/technology/spec-first-a
1010
- Remote and relative [refs](https://swagger.io/docs/specification/using-ref/)
1111
- Request and response coercions powered by [Malli](https://github.com/metosin/malli)
1212
- requestBody coercion
13-
- A fair set of OpenAPI types are currently supported, please raise an issue if something is unsupported
13+
- Strings with uuid and pattern types
14+
- A large subset of OpenAPI types are currently supported, please raise an issue if something is unsupported
1415

1516
Currently unsupported:
1617
- Other coercion libs
@@ -20,25 +21,25 @@ Any contributions are much much welcome and appreciated!
2021
## Installation
2122
Leiningen/Boot
2223
```clojure
23-
[org.clojars.lispyclouds/navi "0.0.7"]
24+
[org.clojars.lispyclouds/navi "0.0.8"]
2425
```
2526

2627
Clojure CLI/deps.edn
2728
```clojure
28-
{org.clojars.lispyclouds/navi {:mvn/version "0.0.7"}}
29+
{org.clojars.lispyclouds/navi {:mvn/version "0.0.8"}}
2930
```
3031

3132
Gradle
3233
```groovy
33-
compile 'org.clojars.lispyclouds:navi:0.0.7'
34+
compile 'org.clojars.lispyclouds:navi:0.0.8'
3435
```
3536

3637
Maven
3738
```xml
3839
<dependency>
3940
<groupId>org.clojars.lispyclouds</groupId>
4041
<artifactId>navi</artifactId>
41-
<version>0.0.7</version>
42+
<version>0.0.8</version>
4243
</dependency>
4344
```
4445

@@ -193,7 +194,7 @@ Bootstrapping a Jetty server:
193194

194195
deps.edn used for this example:
195196
```edn
196-
{:deps {org.clojars.lispyclouds/navi {:mvn/version "0.0.7"}
197+
{:deps {org.clojars.lispyclouds/navi {:mvn/version "0.0.8"}
197198
metosin/reitit-core {:mvn/version "0.6.0"}
198199
metosin/reitit-http {:mvn/version "0.6.0"}
199200
metosin/reitit-interceptors {:mvn/version "0.6.0"}

project.clj

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
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.7"
8-
:author "Rahul De <[email protected]>"
9-
:url "https://github.com/lispyclouds/navi"
10-
:description "A tiny library converting OpenAPI route definitions to Reitit routes."
11-
:license {:name "MIT"
12-
:url "https://opensource.org/licenses/MIT"}
7+
(defproject org.clojars.lispyclouds/navi "0.0.8"
8+
:author "Rahul De <[email protected]>"
9+
:url "https://github.com/lispyclouds/navi"
10+
:description "A tiny library converting OpenAPI route definitions to Reitit routes."
11+
:license {:name "MIT"
12+
:url "https://opensource.org/licenses/MIT"}
1313
:dependencies [[io.swagger.parser.v3/swagger-parser "2.1.22"]])

0 commit comments

Comments
 (0)