From f2f87f121ee91708e25c3d7eb7b2ad69146ea08b Mon Sep 17 00:00:00 2001 From: Alex Nelson Date: Wed, 11 May 2022 17:00:58 -0400 Subject: [PATCH] Bump versions Signed-off-by: Alex Nelson --- case_utils/__init__.py | 2 +- case_utils/case_file/__init__.py | 2 +- case_utils/local_uuid.py | 2 +- case_utils/namespace.py | 2 ++ 4 files changed, 5 insertions(+), 3 deletions(-) diff --git a/case_utils/__init__.py b/case_utils/__init__.py index efa0766..e8bc7ac 100644 --- a/case_utils/__init__.py +++ b/case_utils/__init__.py @@ -11,6 +11,6 @@ # # We would appreciate acknowledgement if the software is used. -__version__ = "0.4.0" +__version__ = "0.5.0" from . import local_uuid diff --git a/case_utils/case_file/__init__.py b/case_utils/case_file/__init__.py index e494514..61e2bb7 100644 --- a/case_utils/case_file/__init__.py +++ b/case_utils/case_file/__init__.py @@ -15,7 +15,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.3.0" +__version__ = "0.3.1" import argparse import datetime diff --git a/case_utils/local_uuid.py b/case_utils/local_uuid.py index b3b77ff..dd1e6cb 100644 --- a/case_utils/local_uuid.py +++ b/case_utils/local_uuid.py @@ -15,7 +15,7 @@ This library is a wrapper for uuid, provided to generate repeatable UUIDs if requested. """ -__version__ = "0.2.0" +__version__ = "0.3.0" import logging import os diff --git a/case_utils/namespace.py b/case_utils/namespace.py index f64b7a4..6e12322 100644 --- a/case_utils/namespace.py +++ b/case_utils/namespace.py @@ -17,6 +17,8 @@ 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.1.0" + import rdflib # type: ignore NS_SH = rdflib.SH