diff --git a/README.md b/README.md
index da7c906..f2848e3 100644
--- a/README.md
+++ b/README.md
@@ -14,34 +14,28 @@ Experimental
- Remote and relative [refs](https://swagger.io/docs/specification/using-ref/)
- Request coercions powered by [Malli](https://github.com/metosin/malli)
- requestBody coercion
-- The following OpenAPI types are currently supported:
- - string
- - integer
- - array
- - object
- - uuid
+- A fair set of OpenAPI types are currently supported, please raise an issue if something is unsupported
Currently unsupported:
- Response coercions
- Other coercion libs
-- A lot more of the OpenAPI spec
Any contributions are much much welcome and appreciated!
## Installation
Leiningen/Boot
```clojure
-[org.clojars.lispyclouds/navi "0.0.4"]
+[org.clojars.lispyclouds/navi "0.0.5"]
```
Clojure CLI/deps.edn
```clojure
-{org.clojars.lispyclouds/navi {:mvn/version "0.0.4"}}
+{org.clojars.lispyclouds/navi {:mvn/version "0.0.5"}}
```
Gradle
```groovy
-compile 'org.clojars.lispyclouds:navi:0.0.4'
+compile 'org.clojars.lispyclouds:navi:0.0.5'
```
Maven
@@ -49,7 +43,7 @@ Maven
org.clojars.lispyclouds
navi
- 0.0.4
+ 0.0.5
```
@@ -204,7 +198,7 @@ Bootstrapping a Jetty server:
deps.edn used for this example:
```edn
-{:deps {org.clojars.lispyclouds/navi {:mvn/version "0.0.4"}
+{:deps {org.clojars.lispyclouds/navi {:mvn/version "0.0.5"}
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 cbc4bd5..cee0c4c 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.4"
+(defproject org.clojars.lispyclouds/navi "0.0.5"
:author "Rahul De "
:url "https://github.com/lispyclouds/navi"
:description "A tiny library converting OpenAPI route definitions to Reitit routes."