Skip to content

Commit 8a07329

Browse files
committed
Update dependencies
1 parent c0c928a commit 8a07329

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
All notable changes to this project will be documented in this file. This change log follows the conventions of [keepachangelog.com](http://keepachangelog.com/).
44

5+
## 0.3.4 - 2022-05-12
6+
7+
- Updated Clojure -> 1.11.1
8+
- Updated other dependencies
9+
510
## 0.3.3 - 2022-01-05
611

712
- Fixed issue when EDN input to be validated contains lists

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Clojure JSON Schema Validator & Generator
44

55
```clojure
6-
[luposlip/json-schema "0.3.3"]
6+
[luposlip/json-schema "0.3.4"]
77
```
88

99
A Clojure library for:

project.clj

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
1-
(defproject luposlip/json-schema "0.3.3"
1+
(defproject luposlip/json-schema "0.3.4"
22
:description "Clojure library for JSON Schema validation and generation - Draft-07 compatible"
33
:url "https://github.com/luposlip/json-schema"
44
:license {:name "Apache License, Version 2.0"
55
:url "https://www.apache.org/licenses/LICENSE-2.0"}
6-
:repositories {"jitpack" {:url "https://jitpack.io"}}
7-
:dependencies [[org.clojure/clojure "1.10.3"]
8-
[cheshire "5.10.1"]
9-
[com.github.everit-org.json-schema/org.everit.json.schema "1.14.0"]]
6+
:dependencies [[org.clojure/clojure "1.11.1"]
7+
[cheshire "5.10.2"]
8+
[com.github.erosb/everit-json-schema "1.14.1"]]
109
:global-vars {*warn-on-reflection* true}
1110
:repl-options {:init-ns json-schema.core}
1211
:profiles {:dev {:resource-paths ["test/resources"]}})

0 commit comments

Comments
 (0)