Skip to content

Commit 0e895b6

Browse files
committed
Bump versions
Signed-off-by: Alex Nelson <alexander.nelson@nist.gov>
1 parent 4d4b720 commit 0e895b6

File tree

16 files changed

+18
-14
lines changed

16 files changed

+18
-14
lines changed

case_utils/__init__.py

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 2 additions & 0 deletions
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

Lines changed: 2 additions & 0 deletions
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

0 commit comments

Comments
 (0)