-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
18 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# 1.0.0 - 19th December 2023 | ||
|
||
- add support for malli via `flanders.malli/->malli` | ||
- requires malli |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,27 @@ | ||
(defproject threatgrid/flanders "0.1.24-SNAPSHOT" | ||
(defproject threatgrid/flanders "1.0.0-SNAPSHOT" | ||
:description "flanders" | ||
:url "http://github.com/threatgrid/flanders" | ||
:license {:name "Eclipse Public License" | ||
:url "http://www.eclipse.org/legal/epl-v10.html"} | ||
:pedantic? :abort | ||
:dependencies [[org.clojure/clojure "1.10.1"] | ||
:dependencies [[org.clojure/clojure "1.11.1"] | ||
[org.clojure/core.match "1.0.0"] | ||
[cheshire "5.9.0"] | ||
|
||
[prismatic/schema "1.1.12"] | ||
[metosin/ring-swagger "0.26.2"] | ||
[metosin/schema-tools "0.12.2"]] | ||
:global-vars {*warn-on-reflection* true} | ||
:release-tasks [["clean"] | ||
["vcs" "assert-committed"] | ||
["change" "version" "leiningen.release/bump-version" "release"] | ||
["vcs" "commit"] | ||
["vcs" "tag" "--no-sign"] | ||
["deploy" "clojars"] | ||
["change" "version" "leiningen.release/bump-version"] | ||
["vcs" "commit"] | ||
["vcs" "push"]] | ||
|
||
:profiles {:dev | ||
{:dependencies [[org.clojure/test.check "1.1.1"] | ||
[metosin/malli "0.13.0"]]}}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
(ns flanders.malli | ||
"Requires malli as a dependency." | ||
(:require | ||
[flanders.types] | ||
[malli.core :as m] | ||
|