Skip to content

Commit

Permalink
Release 0.4.1 - maintenance
Browse files Browse the repository at this point in the history
  • Loading branch information
luposlip committed Mar 2, 2023
1 parent 0d2da42 commit 3e35e80
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 28 deletions.
30 changes: 6 additions & 24 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

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.1 - 2023-03-02

### Fixed

- Force update to `org.json/json` version `20230227`, resolves CVE-2022-45688

## 0.4.0 - 2022-10-03

- Added Custom Format Validators (thanks to @ModestasPeciokas)
Expand Down Expand Up @@ -142,27 +148,3 @@ This release adds usage of $ref pointing to resources in the classpath.

### Added
- Initial public release

[0.3.3]: https://github.com/luposlip/json-schema/compare/0.3.2...0.3.3
[0.3.2]: https://github.com/luposlip/json-schema/compare/0.3.1...0.3.2
[0.3.1]: https://github.com/luposlip/json-schema/compare/0.3.0...0.3.1
[0.3.0]: https://github.com/luposlip/json-schema/compare/0.2.9...0.3.0
[0.2.9]: https://github.com/luposlip/json-schema/compare/0.2.8...0.2.9
[0.2.8]: https://github.com/luposlip/json-schema/compare/0.2.7...0.2.8
[0.2.7]: https://github.com/luposlip/json-schema/compare/0.2.6...0.2.7
[0.2.6]: https://github.com/luposlip/json-schema/compare/0.2.5...0.2.6
[0.2.5]: https://github.com/luposlip/json-schema/compare/0.2.4...0.2.5
[0.2.4]: https://github.com/luposlip/json-schema/compare/0.2.3...0.2.4
[0.2.3]: https://github.com/luposlip/json-schema/compare/0.2.2...0.2.3
[0.2.2]: https://github.com/luposlip/json-schema/compare/0.2.1...0.2.2
[0.2.1]: https://github.com/luposlip/json-schema/compare/0.2.0...0.2.1
[0.2.0]: https://github.com/luposlip/json-schema/compare/0.1.9...0.2.0
[0.1.9]: https://github.com/luposlip/json-schema/compare/0.1.8...0.1.9
[0.1.8]: https://github.com/luposlip/json-schema/compare/0.1.7...0.1.8
[0.1.7]: https://github.com/luposlip/json-schema/compare/0.1.6...0.1.7
[0.1.6]: https://github.com/luposlip/json-schema/compare/0.1.5...0.1.6
[0.1.5]: https://github.com/luposlip/json-schema/compare/0.1.4...0.1.5
[0.1.4]: https://github.com/luposlip/json-schema/compare/0.1.3...0.1.4
[0.1.3]: https://github.com/luposlip/json-schema/compare/0.1.2...0.1.3
[0.1.2]: https://github.com/luposlip/json-schema/compare/0.1.1...0.1.2
[0.1.1]: https://github.com/luposlip/json-schema/compare/0.1.0...0.1.1
4 changes: 2 additions & 2 deletions 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.0"]
[luposlip/json-schema "0.4.1"]
```

A Clojure library for:
Expand Down Expand Up @@ -185,7 +185,7 @@ To the contributors!
## Copyright & License
Copyright (C) 2020-2022 Henrik Mohr
Copyright (C) 2020-2023 Henrik Mohr
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
5 changes: 3 additions & 2 deletions project.clj
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
(defproject luposlip/json-schema "0.4.0"
(defproject luposlip/json-schema "0.4.1"
: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.1"]
[cheshire "5.11.0"]
[com.github.erosb/everit-json-schema "1.14.1"]]
[org.json/json "20230227"]
[com.github.erosb/everit-json-schema "1.14.1" :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 3e35e80

Please sign in to comment.