diff --git a/case_utils/__init__.py b/case_utils/__init__.py index 6efe584..c98638f 100644 --- a/case_utils/__init__.py +++ b/case_utils/__init__.py @@ -14,6 +14,6 @@ # # We would appreciate acknowledgement if the software is used. -__version__ = "0.11.0" +__version__ = "0.12.0" from . import local_uuid # noqa: F401 diff --git a/case_utils/case_file/__init__.py b/case_utils/case_file/__init__.py index 525eea2..5f797fc 100644 --- a/case_utils/case_file/__init__.py +++ b/case_utils/case_file/__init__.py @@ -18,7 +18,7 @@ This module creates a graph object that provides a basic UCO characterization of a single file. The gathered metadata is among the more "durable" file characteristics, i.e. characteristics that would remain consistent when transferring a file between locations. """ -__version__ = "0.5.0" +__version__ = "0.5.1" import argparse import datetime diff --git a/case_utils/case_sparql_construct/__init__.py b/case_utils/case_sparql_construct/__init__.py index 8bfdf99..46072c0 100644 --- a/case_utils/case_sparql_construct/__init__.py +++ b/case_utils/case_sparql_construct/__init__.py @@ -18,7 +18,7 @@ This script executes a SPARQL CONSTRUCT query, returning a graph of the generated triples. """ -__version__ = "0.2.5" +__version__ = "0.2.6" import argparse import logging diff --git a/case_utils/case_sparql_select/__init__.py b/case_utils/case_sparql_select/__init__.py index 13d4ca8..f1c7bb7 100644 --- a/case_utils/case_sparql_select/__init__.py +++ b/case_utils/case_sparql_select/__init__.py @@ -29,7 +29,7 @@ Should a more complex query be necessary, an outer, wrapping SELECT query would let this script continue to function. """ -__version__ = "0.5.1" +__version__ = "0.5.2" import argparse import binascii diff --git a/case_utils/case_validate/__init__.py b/case_utils/case_validate/__init__.py index 22de866..babea69 100644 --- a/case_utils/case_validate/__init__.py +++ b/case_utils/case_validate/__init__.py @@ -32,7 +32,7 @@ details.) """ -__version__ = "0.3.0" +__version__ = "0.4.0" import argparse import logging diff --git a/case_utils/case_validate/validate_types.py b/case_utils/case_validate/validate_types.py index 1625963..8ca825f 100644 --- a/case_utils/case_validate/validate_types.py +++ b/case_utils/case_validate/validate_types.py @@ -14,6 +14,8 @@ # # We would appreciate acknowledgement if the software is used. +__version__ = "0.1.0" + from typing import Set, Union import rdflib diff --git a/case_utils/case_validate/validate_utils.py b/case_utils/case_validate/validate_utils.py index 44c1e93..4f711e0 100644 --- a/case_utils/case_validate/validate_utils.py +++ b/case_utils/case_validate/validate_utils.py @@ -14,6 +14,8 @@ # # We would appreciate acknowledgement if the software is used. +__version__ = "0.1.0" + import importlib import logging import os diff --git a/case_utils/inherent_uuid.py b/case_utils/inherent_uuid.py index 8b4026c..cdcba73 100644 --- a/case_utils/inherent_uuid.py +++ b/case_utils/inherent_uuid.py @@ -57,7 +57,7 @@ >>> assert str(n_file_facet)[-36:] == str(n_file_facet_2)[-36:] """ -__version__ = "0.1.0" +__version__ = "0.1.1" import binascii import re diff --git a/case_utils/local_uuid.py b/case_utils/local_uuid.py index 2691daa..2df5fcb 100644 --- a/case_utils/local_uuid.py +++ b/case_utils/local_uuid.py @@ -20,7 +20,7 @@ The function local_uuid() should be used in code where a user could be expected to opt in to non-random UUIDs. """ -__version__ = "0.3.2" +__version__ = "0.4.0" __all__ = ["configure", "local_uuid"] diff --git a/case_utils/namespace.py b/case_utils/namespace.py index f1fd4e8..62e9475 100644 --- a/case_utils/namespace.py +++ b/case_utils/namespace.py @@ -20,7 +20,7 @@ To use, add "from case_utils.namespace import *". Namespace variables starting with "NS_" are imported. As needs are demonstrated in CASE tooling (both in case_utils and from downstream requests), namespaces will also be imported from rdflib for a consistent "NS_*" spelling. """ -__version__ = "0.2.1" +__version__ = "0.2.2" import rdflib diff --git a/case_utils/ontology/__init__.py b/case_utils/ontology/__init__.py index 779ffd4..0eafc5c 100644 --- a/case_utils/ontology/__init__.py +++ b/case_utils/ontology/__init__.py @@ -14,7 +14,7 @@ # # We would appreciate acknowledgement if the software is used. -__version__ = "0.1.1" +__version__ = "0.1.2" import importlib.resources import logging diff --git a/case_utils/ontology/src/ontology_and_version_iris.py b/case_utils/ontology/src/ontology_and_version_iris.py index bc4dd85..9b86deb 100644 --- a/case_utils/ontology/src/ontology_and_version_iris.py +++ b/case_utils/ontology/src/ontology_and_version_iris.py @@ -18,7 +18,7 @@ This script creates a list of all ontology and version IRIs that have ever existed in a CDO ontology to describe a CDO ontology. I.e. the subject of triples with owl:Ontology as predicate are included, as are the objects of version-referencing triples (owl:versionIRI, owl:incompatibleWith, etc.). """ -__version__ = "0.1.1" +__version__ = "0.1.2" import argparse import typing diff --git a/case_utils/ontology/src/subclasses_ttl.py b/case_utils/ontology/src/subclasses_ttl.py index 2457852..1bc03ca 100644 --- a/case_utils/ontology/src/subclasses_ttl.py +++ b/case_utils/ontology/src/subclasses_ttl.py @@ -18,7 +18,7 @@ This script creates an excerpt of an ontology graph that consists solely of all rdfs:subClassOf statements. """ -__version__ = "0.1.0" +__version__ = "0.1.1" import argparse diff --git a/case_utils/ontology/version_info.py b/case_utils/ontology/version_info.py index 5ea40f3..7bdf9a3 100644 --- a/case_utils/ontology/version_info.py +++ b/case_utils/ontology/version_info.py @@ -22,7 +22,7 @@ When preparing to build a new monolithic ontology, please edit this variable to match the new respective version. """ -__version__ = "0.6.0" +__version__ = "0.6.1" __all__ = ["CURRENT_CASE_VERSION", "built_version_choices_list"] diff --git a/tests/src/compact.py b/tests/src/compact.py index 95fad38..96c2828 100644 --- a/tests/src/compact.py +++ b/tests/src/compact.py @@ -21,7 +21,7 @@ https://www.w3.org/TR/json-ld11/#terms """ -__version__ = "0.2.1" +__version__ = "0.2.2" import json import logging diff --git a/tests/src/isomorphic_diff.py b/tests/src/isomorphic_diff.py index 445e621..b2f3b7d 100644 --- a/tests/src/isomorphic_diff.py +++ b/tests/src/isomorphic_diff.py @@ -30,7 +30,7 @@ On resolution of rdflib issue 812, and on adding some format-support flexibility, isomorphic_diff.py is likely to be deprecated in favor of using the upstream rdfgraphisomorphism command. """ -__version__ = "0.2.1" +__version__ = "0.2.2" import argparse import logging