Skip to content

Release 0.12.0 #126

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 25, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion case_utils/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion case_utils/case_file/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion case_utils/case_sparql_construct/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion case_utils/case_sparql_select/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion case_utils/case_validate/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
details.)
"""

__version__ = "0.3.0"
__version__ = "0.4.0"

import argparse
import logging
Expand Down
2 changes: 2 additions & 0 deletions case_utils/case_validate/validate_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@
#
# We would appreciate acknowledgement if the software is used.

__version__ = "0.1.0"

from typing import Set, Union

import rdflib
Expand Down
2 changes: 2 additions & 0 deletions case_utils/case_validate/validate_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@
#
# We would appreciate acknowledgement if the software is used.

__version__ = "0.1.0"

import importlib
import logging
import os
Expand Down
2 changes: 1 addition & 1 deletion case_utils/inherent_uuid.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion case_utils/local_uuid.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"]

Expand Down
2 changes: 1 addition & 1 deletion case_utils/namespace.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion case_utils/ontology/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion case_utils/ontology/src/ontology_and_version_iris.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion case_utils/ontology/src/subclasses_ttl.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion case_utils/ontology/version_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"]

Expand Down
2 changes: 1 addition & 1 deletion tests/src/compact.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
https://www.w3.org/TR/json-ld11/#terms
"""

__version__ = "0.2.1"
__version__ = "0.2.2"

import json
import logging
Expand Down
2 changes: 1 addition & 1 deletion tests/src/isomorphic_diff.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down