diff options
author | Wojtek Kosior <koszko@koszko.org> | 2022-03-01 09:32:54 +0100 |
---|---|---|
committer | Wojtek Kosior <koszko@koszko.org> | 2022-03-01 09:48:53 +0100 |
commit | 9271ca7b8a8364423008ee400be541217b401c3c (patch) | |
tree | f7d6cf55de372a45151b68e46db1d7467640ac0d /src/hydrilla/util | |
parent | c1c7f9695d26b90dfe342601f57c4cd1b92fb901 (diff) | |
download | hydrilla-builder-9271ca7b8a8364423008ee400be541217b401c3c.tar.gz hydrilla-builder-9271ca7b8a8364423008ee400be541217b401c3c.zip |
update schema versions to 1.0.1
Diffstat (limited to 'src/hydrilla/util')
-rw-r--r-- | src/hydrilla/util/_util.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/hydrilla/util/_util.py b/src/hydrilla/util/_util.py index dc18fb9..778e78f 100644 --- a/src/hydrilla/util/_util.py +++ b/src/hydrilla/util/_util.py @@ -111,7 +111,7 @@ def version_string(ver: list[int], rev: Optional[int]=None) -> str: return '.'.join([str(n) for n in ver]) + ('' if rev is None else f'-{rev}') schemas = {} -for path in (here.parent / 'schemas').glob('*-1.schema.json'): +for path in (here.parent / 'schemas').glob('*-1.0.1.schema.json'): schema = json.loads(path.read_text()) schemas[schema['$id']] = schema |