Skip to content

Commit

Permalink
[release] 0.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
lispyclouds committed Sep 1, 2024
1 parent 3fabb61 commit 92206a9
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 11 deletions.
14 changes: 5 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,6 @@ A tiny library converting [OpenAPI](https://www.openapis.org/) route definitions

Suitable for [spec-first](https://www.atlassian.com/blog/technology/spec-first-api-development) servers.

## Status

Experimental

## Features

- Read OpenAPI 3 definitions as JSON or YAML
Expand All @@ -24,25 +20,25 @@ Any contributions are much much welcome and appreciated!
## Installation
Leiningen/Boot
```clojure
[org.clojars.lispyclouds/navi "0.0.6"]
[org.clojars.lispyclouds/navi "0.0.7"]
```

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

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

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

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

deps.edn used for this example:
```edn
{:deps {org.clojars.lispyclouds/navi {:mvn/version "0.0.6"}
{:deps {org.clojars.lispyclouds/navi {:mvn/version "0.0.7"}
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
2 changes: 1 addition & 1 deletion project.clj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
; license that can be found in the LICENSE file or at
; https://opensource.org/licenses/MIT.

(defproject org.clojars.lispyclouds/navi "0.0.6"
(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."
Expand Down
2 changes: 1 addition & 1 deletion src/navi/core.clj
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@
(catch Exception e
(throw (ex-info (str "Exception processing operation "
(pr-str (.getOperationId op))
": "(ex-message e))
": " (ex-message e))
{:operation op}
e)))))

Expand Down

0 comments on commit 92206a9

Please sign in to comment.