Skip to content

Commit

Permalink
Bump version for release
Browse files Browse the repository at this point in the history
  • Loading branch information
sirosen committed Aug 8, 2023
1 parent 96792fb commit 38af962
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 21 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,11 @@ Unreleased

.. vendor-insert-here
- Update vendored schemas (2023-08-08)
0.24.0
------

- Update vendored schemas: github-actions, gitlab-ci, readthedocs, renovate,
travis (2023-08-08)
- Remove support for python3.7
- The minimum supported version of the `jsonschema` library is now `4.18.0`,
which introduces new `$ref` resolution behavior and fixes. That behavior is
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ files.

```yaml
- repo: https://github.com/python-jsonschema/check-jsonschema
rev: 0.23.3
rev: 0.24.0
hooks:
- id: check-github-workflows
```
Expand Down
4 changes: 2 additions & 2 deletions docs/optional_parsers.rst
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ For example,
.. code-block:: yaml
- repo: https://github.com/python-jsonschema/check-jsonschema
rev: 0.23.3
rev: 0.24.0
hooks:
- id: check-renovate
additional_dependencies: ['pyjson5']
Expand All @@ -39,7 +39,7 @@ For example,
.. code-block:: yaml
- repo: https://github.com/python-jsonschema/check-jsonschema
rev: 0.23.3
rev: 0.24.0
hooks:
- id: check-jsonschema
name: 'Check GitHub Workflows'
Expand Down
30 changes: 15 additions & 15 deletions docs/precommit_usage.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ You must specify a schema using pre-commit ``args`` configuration.
:caption: example config
- repo: https://github.com/python-jsonschema/check-jsonschema
rev: 0.23.3
rev: 0.24.0
hooks:
- id: check-jsonschema
files: ^data/.*\.json$
Expand All @@ -34,7 +34,7 @@ Validate JSON Schema files against their matching metaschema, as specified in th
:caption: example config
- repo: https://github.com/python-jsonschema/check-jsonschema
rev: 0.23.3
rev: 0.24.0
hooks:
- id: check-metaschema
files: ^schemas/.*\.json$
Expand All @@ -52,7 +52,7 @@ Validate Azure Pipelines config against the schema provided by Microsoft
:caption: example config
- repo: https://github.com/python-jsonschema/check-jsonschema
rev: 0.23.3
rev: 0.24.0
hooks:
- id: check-azure-pipelines
Expand All @@ -66,7 +66,7 @@ Validate Bamboo Specs against the schema provided by SchemaStore
:caption: example config
- repo: https://github.com/python-jsonschema/check-jsonschema
rev: 0.23.3
rev: 0.24.0
hooks:
- id: check-bamboo-spec
Expand All @@ -80,7 +80,7 @@ Validate Bitbucket Pipelines against the schema provided by SchemaStore
:caption: example config
- repo: https://github.com/python-jsonschema/check-jsonschema
rev: 0.23.3
rev: 0.24.0
hooks:
- id: check-bitbucket-pipelines
Expand All @@ -94,7 +94,7 @@ Validate Buildkite Pipelines against the schema provided by Buildkite
:caption: example config
- repo: https://github.com/python-jsonschema/check-jsonschema
rev: 0.23.3
rev: 0.24.0
hooks:
- id: check-buildkite
Expand All @@ -108,7 +108,7 @@ Validate Dependabot Config (v2) against the schema provided by SchemaStore
:caption: example config
- repo: https://github.com/python-jsonschema/check-jsonschema
rev: 0.23.3
rev: 0.24.0
hooks:
- id: check-dependabot
Expand All @@ -122,7 +122,7 @@ Validate GitHub Actions against the schema provided by SchemaStore
:caption: example config
- repo: https://github.com/python-jsonschema/check-jsonschema
rev: 0.23.3
rev: 0.24.0
hooks:
- id: check-github-actions
Expand All @@ -136,7 +136,7 @@ Validate GitHub Workflows against the schema provided by SchemaStore
:caption: example config
- repo: https://github.com/python-jsonschema/check-jsonschema
rev: 0.23.3
rev: 0.24.0
hooks:
- id: check-github-workflows
Expand All @@ -150,7 +150,7 @@ Validate GitLab CI config against the schema provided by SchemaStore
:caption: example config
- repo: https://github.com/python-jsonschema/check-jsonschema
rev: 0.23.3
rev: 0.24.0
hooks:
- id: check-gitlab-ci
Expand All @@ -164,7 +164,7 @@ Validate ReadTheDocs config against the schema provided by ReadTheDocs
:caption: example config
- repo: https://github.com/python-jsonschema/check-jsonschema
rev: 0.23.3
rev: 0.24.0
hooks:
- id: check-readthedocs
Expand All @@ -178,7 +178,7 @@ Validate Renovate config against the schema provided by Renovate (does not suppo
:caption: example config
- repo: https://github.com/python-jsonschema/check-jsonschema
rev: 0.23.3
rev: 0.24.0
hooks:
- id: check-renovate
Expand All @@ -192,7 +192,7 @@ Validate Travis Config against the schema provided by SchemaStore
:caption: example config
- repo: https://github.com/python-jsonschema/check-jsonschema
rev: 0.23.3
rev: 0.24.0
hooks:
- id: check-travis
Expand All @@ -218,7 +218,7 @@ manually, you could do this:
.. code-block:: yaml
- repo: https://github.com/python-jsonschema/check-jsonschema
rev: 0.23.3
rev: 0.24.0
hooks:
- id: check-jsonschema
name: "Check GitHub Workflows"
Expand All @@ -237,7 +237,7 @@ To check with the builtin schema that a GitHub workflow sets
.. code-block:: yaml
- repo: https://github.com/python-jsonschema/check-jsonschema
rev: 0.23.3
rev: 0.24.0
hooks:
- id: check-jsonschema
name: "Check GitHub Workflows set timeout-minutes"
Expand Down
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = check-jsonschema
version = 0.23.3
version = 0.24.0
description = A jsonschema CLI and pre-commit hook
long_description = file: README.md
long_description_content_type = text/markdown
Expand All @@ -15,7 +15,7 @@ classifiers =
Programming Language :: Python :: 3

[options]
python_requires = >=3.7
python_requires = >=3.8
# reference for dependency spec: https://www.python.org/dev/peps/pep-0508/
install_requires =
importlib-resources>=1.4.0;python_version<"3.9"
Expand Down

0 comments on commit 38af962

Please sign in to comment.