prep for release

This commit is contained in:
bom 2022-05-13 15:24:04 +02:00
parent 663c07baaf
commit 75bd554624
2 changed files with 6 additions and 1 deletions

View file

@ -1,4 +1,4 @@
(defproject org.domaindrivenarchitecture/c4k-common-cljs "2.0.2-SNAPSHOT"
(defproject org.domaindrivenarchitecture/c4k-common-cljs "2.0.2"
:description "Contains predicates and tools for c4k"
:url "https://domaindrivenarchitecture.org"
:license {:name "Apache License, Version 2.0"

View file

@ -19,3 +19,8 @@
(keyword (first (st/split resource #"/"))))
(defmulti load-resource dispatch-by-resource-name)
(defmulti load-as-edn dispatch-by-resource-name)
(defmethod load-as-edn :clj [resource-name]
(from-string (load-resource resource-name)))