Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
luposlip committed May 12, 2022
1 parent c0c928a commit 8a07329
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
9 changes: 4 additions & 5 deletions project.clj
Original file line number Diff line number Diff line change
@@ -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"]}})

0 comments on commit 8a07329

Please sign in to comment.