Skip to content

Commit

Permalink
[release] 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lispyclouds committed Jan 17, 2025
1 parent 5f7ddcd commit 68082b1
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Suitable for [spec-first](https://www.atlassian.com/blog/technology/spec-first-a

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

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

Gradle
```groovy
compile 'org.clojars.lispyclouds:navi:0.0.10'
compile 'org.clojars.lispyclouds:navi:0.1.0'
```

Maven
```xml
<dependency>
<groupId>org.clojars.lispyclouds</groupId>
<artifactId>navi</artifactId>
<version>0.0.10</version>
<version>0.1.0</version>
</dependency>
```

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

deps.edn used for this example:
```edn
{:deps {org.clojars.lispyclouds/navi {:mvn/version "0.0.10"}
{:deps {org.clojars.lispyclouds/navi {:mvn/version "0.1.0"}
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.10"
(defproject org.clojars.lispyclouds/navi "0.1.0"
: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

0 comments on commit 68082b1

Please sign in to comment.