Skip to content

Commit

Permalink
Merge pull request #143 from networktocode/develop
Browse files Browse the repository at this point in the history
v1.1.5 Release

### Changes

- Fixes #141 - Can not install schema-enforcer in environments which require a version of jsonschema < 4.6
  • Loading branch information
PhillSimonds authored Jul 27, 2022
2 parents b11d42f + 90897c6 commit 52848ce
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 20 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## v1.1.5 - 2022-07-27

### Changes

- Fixes #141 - Can not install schema-enforcer in environments which require a version of jsonschema < 4.6

## v1.1.4 - 2022-07-13

### Adds
Expand Down
33 changes: 15 additions & 18 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "schema-enforcer"
version = "1.1.4"
version = "1.1.5"
description = "Tool/Framework for testing structured data against schema definitions"
authors = ["Network to Code, LLC <[email protected]>"]
license = "Apache-2.0"
Expand All @@ -27,7 +27,7 @@ jsonpointer = "^2.1"
jmespath = "^0.10"
ansible = { version = "^2.10.0", optional = true }
ansible-base = { version = "^2.10.0", optional = true }
jsonschema = {version = ">3.2, <5", extras = ["format-nongpl"]}
jsonschema = {version = ">3.2, <4.6", extras = ["format_nongpl"]}

[tool.poetry.extras]
ansible = ["ansible"]
Expand Down

0 comments on commit 52848ce

Please sign in to comment.