Skip to content

Commit

Permalink
prep 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
frenchy64 committed Dec 19, 2023
1 parent a9d1d40 commit 2c0a70a
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGES.md
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ validators, etc.

## License

Copyright © 2016-2020 Cisco Systems
Copyright © 2016-2023 Cisco Systems

Distributed under the Eclipse Public License either version 1.0 or (at
your option) any later version.
14 changes: 12 additions & 2 deletions project.clj
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"]]}})
1 change: 1 addition & 0 deletions src/flanders/malli.clj
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]
Expand Down

0 comments on commit 2c0a70a

Please sign in to comment.