diff --git a/CHANGELOG.md b/CHANGELOG.md index 5152ef0..f8c8f21 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Change Log +* 0.4.xx -- Unreleased + * Enable malli coercion by default + * 0.3.38 -- 2024-11-17 * Change middleware order so context is available in *request* diff --git a/build.clj b/build.clj index d68fbd5..3198aee 100644 --- a/build.clj +++ b/build.clj @@ -5,7 +5,7 @@ (def lib 'com.github.brettatoms/zodiac) -(defn- version-base [patch] (format "0.3.%s" patch)) +(defn- version-base [patch] (format "0.4.%s" patch)) (def version (version-base (b/git-count-revs nil))) (def snapshot (version-base "9999-SNAPSHOT")) (def class-dir "target/classes")