diff --git a/CHANGELOG.md b/CHANGELOG.md index 6ea3d12..f6d67b1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ All notable changes to this project will be documented in this file. This change log follows the conventions of [keepachangelog.com](http://keepachangelog.com/). +## 0.3.4 - 2022-05-12 + +- Updated Clojure -> 1.11.1 +- Updated other dependencies + ## 0.3.3 - 2022-01-05 - Fixed issue when EDN input to be validated contains lists diff --git a/README.md b/README.md index d64ddd8..4387514 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ # Clojure JSON Schema Validator & Generator ```clojure -[luposlip/json-schema "0.3.3"] +[luposlip/json-schema "0.3.4"] ``` A Clojure library for: diff --git a/project.clj b/project.clj index f35aeee..684fffd 100644 --- a/project.clj +++ b/project.clj @@ -1,12 +1,11 @@ -(defproject luposlip/json-schema "0.3.3" +(defproject luposlip/json-schema "0.3.4" :description "Clojure library for JSON Schema validation and generation - Draft-07 compatible" :url "https://github.com/luposlip/json-schema" :license {:name "Apache License, Version 2.0" :url "https://www.apache.org/licenses/LICENSE-2.0"} - :repositories {"jitpack" {:url "https://jitpack.io"}} - :dependencies [[org.clojure/clojure "1.10.3"] - [cheshire "5.10.1"] - [com.github.everit-org.json-schema/org.everit.json.schema "1.14.0"]] + :dependencies [[org.clojure/clojure "1.11.1"] + [cheshire "5.10.2"] + [com.github.erosb/everit-json-schema "1.14.1"]] :global-vars {*warn-on-reflection* true} :repl-options {:init-ns json-schema.core} :profiles {:dev {:resource-paths ["test/resources"]}})