From 92206a9a3254c173d258f60c6bf17c6b8239d67a Mon Sep 17 00:00:00 2001 From: Rahul De Date: Sun, 1 Sep 2024 09:12:57 +0100 Subject: [PATCH] [release] 0.0.7 --- README.md | 14 +++++--------- project.clj | 2 +- src/navi/core.clj | 2 +- 3 files changed, 7 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index fdbadc0..4c12967 100644 --- a/README.md +++ b/README.md @@ -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 @@ -24,17 +20,17 @@ 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 @@ -42,7 +38,7 @@ Maven org.clojars.lispyclouds navi - 0.0.6 + 0.0.7 ``` @@ -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"} diff --git a/project.clj b/project.clj index e22345f..1bfcc69 100644 --- a/project.clj +++ b/project.clj @@ -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 " :url "https://github.com/lispyclouds/navi" :description "A tiny library converting OpenAPI route definitions to Reitit routes." diff --git a/src/navi/core.clj b/src/navi/core.clj index 1a542b7..ac30ec8 100644 --- a/src/navi/core.clj +++ b/src/navi/core.clj @@ -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)))))