Remove release-candidate status
This commit is contained in:
parent
45015b60b2
commit
18bacf52cb
2 changed files with 2 additions and 5 deletions
|
|
@ -12,15 +12,12 @@ Clojure ones, however this doesn't remove the ability to write systems which
|
||||||
minimize the cost of marshaling data and optimize for performance, to make use
|
minimize the cost of marshaling data and optimize for performance, to make use
|
||||||
of the low-level access Panama gives us.
|
of the low-level access Panama gives us.
|
||||||
|
|
||||||
NOTE: Right now this library is in early alpha, and has not yet been released to
|
|
||||||
Clojars. This will be remedied soon.
|
|
||||||
|
|
||||||
## Installation
|
## Installation
|
||||||
This library is available on Clojars. Add the following entry to the `:deps` key
|
This library is available on Clojars. Add the following entry to the `:deps` key
|
||||||
of your `deps.edn`:
|
of your `deps.edn`:
|
||||||
|
|
||||||
```clojure
|
```clojure
|
||||||
org.suskalo/coffi {:mvn/version "0.1.0-RC1"}
|
org.suskalo/coffi {:mvn/version "0.1.0"}
|
||||||
```
|
```
|
||||||
|
|
||||||
Coffi also includes support for the linter clj-kondo. If you use clj-kondo and
|
Coffi also includes support for the linter clj-kondo. If you use clj-kondo and
|
||||||
|
|
|
||||||
|
|
@ -17,7 +17,7 @@
|
||||||
[clojure.tools.build.api :as b]))
|
[clojure.tools.build.api :as b]))
|
||||||
|
|
||||||
(def lib-coord 'org.suskalo/coffi)
|
(def lib-coord 'org.suskalo/coffi)
|
||||||
(def version (format "0.1.%s-SNAPSHOT" (b/git-count-revs nil)))
|
(def version (format "0.1.%s" (b/git-count-revs nil)))
|
||||||
|
|
||||||
(def resource-dirs ["resources/"])
|
(def resource-dirs ["resources/"])
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue