Skip to content

Commit 3f14cdc

Browse files
authored
Merge pull request #126 from casework/release-0.12.0
Release 0.12.0
2 parents 4d4b720 + 0e895b6 commit 3f14cdc

16 files changed

+18
-14
lines changed

case_utils/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@
1414
#
1515
# We would appreciate acknowledgement if the software is used.
1616

17-
__version__ = "0.11.0"
17+
__version__ = "0.12.0"
1818

1919
from . import local_uuid # noqa: F401

case_utils/case_file/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
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.
1919
"""
2020

21-
__version__ = "0.5.0"
21+
__version__ = "0.5.1"
2222

2323
import argparse
2424
import datetime

case_utils/case_sparql_construct/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
This script executes a SPARQL CONSTRUCT query, returning a graph of the generated triples.
1919
"""
2020

21-
__version__ = "0.2.5"
21+
__version__ = "0.2.6"
2222

2323
import argparse
2424
import logging

case_utils/case_sparql_select/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
Should a more complex query be necessary, an outer, wrapping SELECT query would let this script continue to function.
3030
"""
3131

32-
__version__ = "0.5.1"
32+
__version__ = "0.5.2"
3333

3434
import argparse
3535
import binascii

case_utils/case_validate/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
details.)
3333
"""
3434

35-
__version__ = "0.3.0"
35+
__version__ = "0.4.0"
3636

3737
import argparse
3838
import logging

case_utils/case_validate/validate_types.py

+2
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@
1414
#
1515
# We would appreciate acknowledgement if the software is used.
1616

17+
__version__ = "0.1.0"
18+
1719
from typing import Set, Union
1820

1921
import rdflib

case_utils/case_validate/validate_utils.py

+2
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@
1414
#
1515
# We would appreciate acknowledgement if the software is used.
1616

17+
__version__ = "0.1.0"
18+
1719
import importlib
1820
import logging
1921
import os

case_utils/inherent_uuid.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
>>> assert str(n_file_facet)[-36:] == str(n_file_facet_2)[-36:]
5858
"""
5959

60-
__version__ = "0.1.0"
60+
__version__ = "0.1.1"
6161

6262
import binascii
6363
import re

case_utils/local_uuid.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
The function local_uuid() should be used in code where a user could be expected to opt in to non-random UUIDs.
2121
"""
2222

23-
__version__ = "0.3.2"
23+
__version__ = "0.4.0"
2424

2525
__all__ = ["configure", "local_uuid"]
2626

case_utils/namespace.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
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.
2121
"""
2222

23-
__version__ = "0.2.1"
23+
__version__ = "0.2.2"
2424

2525
import rdflib
2626

case_utils/ontology/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
#
1515
# We would appreciate acknowledgement if the software is used.
1616

17-
__version__ = "0.1.1"
17+
__version__ = "0.1.2"
1818

1919
import importlib.resources
2020
import logging

case_utils/ontology/src/ontology_and_version_iris.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
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.).
1919
"""
2020

21-
__version__ = "0.1.1"
21+
__version__ = "0.1.2"
2222

2323
import argparse
2424
import typing

case_utils/ontology/src/subclasses_ttl.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
This script creates an excerpt of an ontology graph that consists solely of all rdfs:subClassOf statements.
1919
"""
2020

21-
__version__ = "0.1.0"
21+
__version__ = "0.1.1"
2222

2323
import argparse
2424

case_utils/ontology/version_info.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
When preparing to build a new monolithic ontology, please edit this variable to match the new respective version.
2323
"""
2424

25-
__version__ = "0.6.0"
25+
__version__ = "0.6.1"
2626

2727
__all__ = ["CURRENT_CASE_VERSION", "built_version_choices_list"]
2828

tests/src/compact.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
https://www.w3.org/TR/json-ld11/#terms
2222
"""
2323

24-
__version__ = "0.2.1"
24+
__version__ = "0.2.2"
2525

2626
import json
2727
import logging

tests/src/isomorphic_diff.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
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.
3131
"""
3232

33-
__version__ = "0.2.1"
33+
__version__ = "0.2.2"
3434

3535
import argparse
3636
import logging

0 commit comments

Comments
 (0)