Skip to content

Commit

Permalink
Maintenance release v0.4.5
Browse files Browse the repository at this point in the history
  • Loading branch information
luposlip committed Jun 3, 2024
1 parent c5675e2 commit b1255be
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 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.4.5 - 2024-06-03

- Update dependency `org.json/json` to newest
- Update Clojure to `1.11.3`

## 0.4.4 - 2024-04-02

- Updated dependencies
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.4.4"]
[luposlip/json-schema "0.4.5"]
```

A Clojure library for:
Expand Down
7 changes: 4 additions & 3 deletions project.clj
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
(defproject luposlip/json-schema "0.4.4"
(defproject luposlip/json-schema "0.4.5"
: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"}
:dependencies [[org.clojure/clojure "1.11.2"]
:dependencies [[org.clojure/clojure "1.11.3"]
[cheshire "5.13.0"]
[com.github.erosb/everit-json-schema "1.14.4"]]
[org.json/json "20240303"]
[com.github.erosb/everit-json-schema "1.14.4" :exclusions [org.json/json]]]
:global-vars {*warn-on-reflection* true}
:repl-options {:init-ns json-schema.core}
:profiles {:dev {:resource-paths ["test/resources"]}})

0 comments on commit b1255be

Please sign in to comment.