Skip to content

Commit 1c32e46

Browse files
authored
Merge pull request networktocode#162 from networktocode/release-v1.3.0
Release v1.3.0
2 parents 345d62e + 186ad4e commit 1c32e46

File tree

13 files changed

+229
-146
lines changed

13 files changed

+229
-146
lines changed

.bandit.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@ skips: []
33
# No need to check for security issues in the test scripts!
44
exclude_dirs:
55
- "./tests/"
6+
- "./.venv/"

.flake8

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@
22
# E501: Line length is enforced by Black, so flake8 doesn't need to check it
33
# W503: Black disagrees with this rule, as does PEP 8; Black wins
44
ignore = E501, W503
5+
exclude = .venv

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ jobs:
7575
strategy:
7676
fail-fast: true
7777
matrix:
78-
python-version: ["3.8", "3.9", "3.10"]
78+
python-version: ["3.8", "3.9", "3.10", "3.11"]
7979
ansible-core-version: ["2.11.7"]
8080
runs-on: "ubuntu-20.04"
8181
env:
@@ -159,7 +159,7 @@ jobs:
159159
strategy:
160160
fail-fast: true
161161
matrix:
162-
python-version: ["3.8", "3.9", "3.10"]
162+
python-version: ["3.8", "3.9", "3.10", "3.11"]
163163
ansible-core-version: ["2.11.7"]
164164
runs-on: "ubuntu-20.04"
165165
env:

.yamllint.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,5 @@ rules:
88
line-length: "disable"
99
quoted-strings:
1010
quote-type: "double"
11+
ignore: |
12+
.venv/

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## v1.3.0 - 2024-02-13
4+
5+
- #161 Migrate Schema enforcer to use pydanticv2
6+
37
## v1.2.2
48

59
- #156 Add support for jsonschema 4.18

0 commit comments

Comments
 (0)