sourcemeta-jsonschema 10.0.0__tar.gz → 11.0.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of sourcemeta-jsonschema might be problematic. Click here for more details.
- {sourcemeta_jsonschema-10.0.0/sourcemeta_jsonschema.egg-info → sourcemeta_jsonschema-11.0.1}/PKG-INFO +1 -1
- {sourcemeta_jsonschema-10.0.0 → sourcemeta_jsonschema-11.0.1}/README.md +15 -2
- {sourcemeta_jsonschema-10.0.0 → sourcemeta_jsonschema-11.0.1}/setup.py +1 -1
- sourcemeta_jsonschema-11.0.1/sourcemeta_jsonschema/jsonschema-darwin-arm64 +0 -0
- sourcemeta_jsonschema-11.0.1/sourcemeta_jsonschema/jsonschema-darwin-x86_64 +0 -0
- sourcemeta_jsonschema-11.0.1/sourcemeta_jsonschema/jsonschema-linux-arm64 +0 -0
- {sourcemeta_jsonschema-10.0.0 → sourcemeta_jsonschema-11.0.1}/sourcemeta_jsonschema/jsonschema-linux-x86_64 +0 -0
- sourcemeta_jsonschema-11.0.1/sourcemeta_jsonschema/jsonschema-windows-x86_64.exe +0 -0
- {sourcemeta_jsonschema-10.0.0 → sourcemeta_jsonschema-11.0.1/sourcemeta_jsonschema.egg-info}/PKG-INFO +1 -1
- sourcemeta_jsonschema-10.0.0/sourcemeta_jsonschema/jsonschema-darwin-arm64 +0 -0
- sourcemeta_jsonschema-10.0.0/sourcemeta_jsonschema/jsonschema-darwin-x86_64 +0 -0
- sourcemeta_jsonschema-10.0.0/sourcemeta_jsonschema/jsonschema-linux-arm64 +0 -0
- sourcemeta_jsonschema-10.0.0/sourcemeta_jsonschema/jsonschema-windows-x86_64.exe +0 -0
- {sourcemeta_jsonschema-10.0.0 → sourcemeta_jsonschema-11.0.1}/MANIFEST.in +0 -0
- {sourcemeta_jsonschema-10.0.0 → sourcemeta_jsonschema-11.0.1}/setup.cfg +0 -0
- {sourcemeta_jsonschema-10.0.0 → sourcemeta_jsonschema-11.0.1}/sourcemeta_jsonschema/__init__.py +0 -0
- {sourcemeta_jsonschema-10.0.0 → sourcemeta_jsonschema-11.0.1}/sourcemeta_jsonschema/__main__.py +0 -0
- {sourcemeta_jsonschema-10.0.0 → sourcemeta_jsonschema-11.0.1}/sourcemeta_jsonschema.egg-info/SOURCES.txt +0 -0
- {sourcemeta_jsonschema-10.0.0 → sourcemeta_jsonschema-11.0.1}/sourcemeta_jsonschema.egg-info/dependency_links.txt +0 -0
- {sourcemeta_jsonschema-10.0.0 → sourcemeta_jsonschema-11.0.1}/sourcemeta_jsonschema.egg-info/entry_points.txt +0 -0
- {sourcemeta_jsonschema-10.0.0 → sourcemeta_jsonschema-11.0.1}/sourcemeta_jsonschema.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: sourcemeta_jsonschema
|
|
3
|
-
Version:
|
|
3
|
+
Version: 11.0.1
|
|
4
4
|
Summary: The CLI for working with JSON Schema. Covers formatting, linting, testing, and much more for both local development and CI/CD pipelines
|
|
5
5
|
Home-page: https://github.com/sourcemeta/jsonschema
|
|
6
6
|
Author: Sourcemeta
|
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
[](https://github.com/sourcemeta/jsonschema/releases)
|
|
4
4
|
[](https://www.npmjs.com/package/@sourcemeta/jsonschema)
|
|
5
5
|
[](https://www.npmjs.com/package/@sourcemeta/jsonschema)
|
|
6
|
+
[](https://pypi.org/project/sourcemeta-jsonschema)
|
|
6
7
|
[](https://github.com/sourcemeta/jsonschema/actions)
|
|
7
8
|
[](https://github.com/sourcemeta/jsonschema/graphs/contributors/)
|
|
8
9
|
[](https://github.com/sourcemeta/jsonschema/blob/main/.pre-commit-hooks.yaml)
|
|
@@ -125,18 +126,30 @@ Where `X.Y.Z` is replaced with the desired version. For example:
|
|
|
125
126
|
uses: actions/checkout@v4
|
|
126
127
|
|
|
127
128
|
- name: Install the JSON Schema CLI
|
|
128
|
-
uses: sourcemeta/jsonschema@
|
|
129
|
+
uses: sourcemeta/jsonschema@v11.0.1
|
|
129
130
|
|
|
130
131
|
# Then use as usual
|
|
131
132
|
- run: jsonschema fmt path/to/schemas --check
|
|
132
133
|
```
|
|
133
134
|
|
|
134
|
-
### From
|
|
135
|
+
### From npm
|
|
135
136
|
|
|
136
137
|
```sh
|
|
137
138
|
npm install --global @sourcemeta/jsonschema
|
|
138
139
|
```
|
|
139
140
|
|
|
141
|
+
### From PyPI
|
|
142
|
+
|
|
143
|
+
```sh
|
|
144
|
+
pip install sourcemeta-jsonschema
|
|
145
|
+
```
|
|
146
|
+
|
|
147
|
+
### From mise
|
|
148
|
+
|
|
149
|
+
```sh
|
|
150
|
+
mise use jsonschema
|
|
151
|
+
```
|
|
152
|
+
|
|
140
153
|
### From GitHub Releases
|
|
141
154
|
|
|
142
155
|
We publish precompiled binaries for every supported platform to [GitHub
|
|
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
|
|
|
2
2
|
|
|
3
3
|
setup(
|
|
4
4
|
name = "sourcemeta_jsonschema",
|
|
5
|
-
version = "
|
|
5
|
+
version = "11.0.1",
|
|
6
6
|
description = "The CLI for working with JSON Schema. Covers formatting, linting, testing, and much more for both local development and CI/CD pipelines",
|
|
7
7
|
author = "Sourcemeta",
|
|
8
8
|
author_email = "hello@sourcemeta.com",
|
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: sourcemeta_jsonschema
|
|
3
|
-
Version:
|
|
3
|
+
Version: 11.0.1
|
|
4
4
|
Summary: The CLI for working with JSON Schema. Covers formatting, linting, testing, and much more for both local development and CI/CD pipelines
|
|
5
5
|
Home-page: https://github.com/sourcemeta/jsonschema
|
|
6
6
|
Author: Sourcemeta
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
File without changes
|
|
File without changes
|
{sourcemeta_jsonschema-10.0.0 → sourcemeta_jsonschema-11.0.1}/sourcemeta_jsonschema/__init__.py
RENAMED
|
File without changes
|
{sourcemeta_jsonschema-10.0.0 → sourcemeta_jsonschema-11.0.1}/sourcemeta_jsonschema/__main__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|