diff --git a/case_utils/__init__.py b/case_utils/__init__.py index 8202837..29743b3 100644 --- a/case_utils/__init__.py +++ b/case_utils/__init__.py @@ -14,4 +14,4 @@ # # We would appreciate acknowledgement if the software is used. -__version__ = "0.14.1.post0" +__version__ = "0.15.0" diff --git a/case_utils/case_file/__init__.py b/case_utils/case_file/__init__.py index 313acc6..85e5ce3 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.1" +__version__ = "0.6.0" import argparse import datetime diff --git a/case_utils/case_validate/validate_utils.py b/case_utils/case_validate/validate_utils.py index 1fd059d..ecc99a7 100644 --- a/case_utils/case_validate/validate_utils.py +++ b/case_utils/case_validate/validate_utils.py @@ -14,7 +14,7 @@ # # We would appreciate acknowledgement if the software is used. -__version__ = "0.1.0" +__version__ = "0.2.0" import importlib import logging diff --git a/case_utils/inherent_uuid.py b/case_utils/inherent_uuid.py index 92c2056..ad3f7c3 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.1" +__version__ = "0.1.2" import binascii import re diff --git a/case_utils/local_uuid.py b/case_utils/local_uuid.py index 66410d8..2a7b08a 100644 --- a/case_utils/local_uuid.py +++ b/case_utils/local_uuid.py @@ -18,7 +18,7 @@ This library was a wrapper for uuid, provided to generate repeatable UUIDs if requested. It is now a temporary re-export of functionality migrated to cdo_local_uuid. """ -__version__ = "0.4.1" +__version__ = "0.5.0" __all__ = ["configure", "local_uuid"]