Skip to content

Commit

Permalink
[release] 0.0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
lispyclouds committed Sep 29, 2024
1 parent a568b6a commit 7f8c53f
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 12 deletions.
13 changes: 7 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ Suitable for [spec-first](https://www.atlassian.com/blog/technology/spec-first-a
- Remote and relative [refs](https://swagger.io/docs/specification/using-ref/)
- Request and response coercions powered by [Malli](https://github.com/metosin/malli)
- requestBody coercion
- A fair set of OpenAPI types are currently supported, please raise an issue if something is unsupported
- Strings with uuid and pattern types
- A large subset of OpenAPI types are currently supported, please raise an issue if something is unsupported

Currently unsupported:
- Other coercion libs
Expand All @@ -20,25 +21,25 @@ Any contributions are much much welcome and appreciated!
## Installation
Leiningen/Boot
```clojure
[org.clojars.lispyclouds/navi "0.0.7"]
[org.clojars.lispyclouds/navi "0.0.8"]
```

Clojure CLI/deps.edn
```clojure
{org.clojars.lispyclouds/navi {:mvn/version "0.0.7"}}
{org.clojars.lispyclouds/navi {:mvn/version "0.0.8"}}
```

Gradle
```groovy
compile 'org.clojars.lispyclouds:navi:0.0.7'
compile 'org.clojars.lispyclouds:navi:0.0.8'
```

Maven
```xml
<dependency>
<groupId>org.clojars.lispyclouds</groupId>
<artifactId>navi</artifactId>
<version>0.0.7</version>
<version>0.0.8</version>
</dependency>
```

Expand Down Expand Up @@ -193,7 +194,7 @@ Bootstrapping a Jetty server:

deps.edn used for this example:
```edn
{:deps {org.clojars.lispyclouds/navi {:mvn/version "0.0.7"}
{:deps {org.clojars.lispyclouds/navi {:mvn/version "0.0.8"}
metosin/reitit-core {:mvn/version "0.6.0"}
metosin/reitit-http {:mvn/version "0.6.0"}
metosin/reitit-interceptors {:mvn/version "0.6.0"}
Expand Down
12 changes: 6 additions & 6 deletions project.clj
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
; license that can be found in the LICENSE file or at
; https://opensource.org/licenses/MIT.

(defproject org.clojars.lispyclouds/navi "0.0.7"
:author "Rahul De <rahul@mailbox.org>"
:url "https://github.com/lispyclouds/navi"
:description "A tiny library converting OpenAPI route definitions to Reitit routes."
:license {:name "MIT"
:url "https://opensource.org/licenses/MIT"}
(defproject org.clojars.lispyclouds/navi "0.0.8"
:author "Rahul De <rahul@mailbox.org>"
:url "https://github.com/lispyclouds/navi"
:description "A tiny library converting OpenAPI route definitions to Reitit routes."
:license {:name "MIT"
:url "https://opensource.org/licenses/MIT"}
:dependencies [[io.swagger.parser.v3/swagger-parser "2.1.22"]])

0 comments on commit 7f8c53f

Please sign in to comment.