Skip to content

Commit 68082b1

Browse files
committed
[release] 0.1.0
1 parent 5f7ddcd commit 68082b1

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Suitable for [spec-first](https://www.atlassian.com/blog/technology/spec-first-a
1515

1616
Currently unsupported (raise an issue if needed!):
1717
- Other coercion libs
18-
- `oneOf` composed schema
18+
- `oneOf` composed schema (mostly can be handled by `anyOf`)
1919
- Some string formats:
2020
- DateTime
2121
- Email
@@ -26,25 +26,25 @@ Any contributions are much much welcome and appreciated!
2626
## Installation
2727
Leiningen/Boot
2828
```clojure
29-
[org.clojars.lispyclouds/navi "0.0.10"]
29+
[org.clojars.lispyclouds/navi "0.1.0"]
3030
```
3131

3232
Clojure CLI/deps.edn
3333
```clojure
34-
{org.clojars.lispyclouds/navi {:mvn/version "0.0.10"}}
34+
{org.clojars.lispyclouds/navi {:mvn/version "0.1.0"}}
3535
```
3636

3737
Gradle
3838
```groovy
39-
compile 'org.clojars.lispyclouds:navi:0.0.10'
39+
compile 'org.clojars.lispyclouds:navi:0.1.0'
4040
```
4141

4242
Maven
4343
```xml
4444
<dependency>
4545
<groupId>org.clojars.lispyclouds</groupId>
4646
<artifactId>navi</artifactId>
47-
<version>0.0.10</version>
47+
<version>0.1.0</version>
4848
</dependency>
4949
```
5050

@@ -199,7 +199,7 @@ Bootstrapping a Jetty server:
199199

200200
deps.edn used for this example:
201201
```edn
202-
{:deps {org.clojars.lispyclouds/navi {:mvn/version "0.0.10"}
202+
{:deps {org.clojars.lispyclouds/navi {:mvn/version "0.1.0"}
203203
metosin/reitit-core {:mvn/version "0.6.0"}
204204
metosin/reitit-http {:mvn/version "0.6.0"}
205205
metosin/reitit-interceptors {:mvn/version "0.6.0"}

project.clj

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
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.10"
7+
(defproject org.clojars.lispyclouds/navi "0.1.0"
88
:author "Rahul De <rahul@mailbox.org>"
99
:url "https://github.com/lispyclouds/navi"
1010
:description "A tiny library converting OpenAPI route definitions to Reitit routes."

0 commit comments

Comments
 (0)