Skip to content

Commit f2f87f1

Browse files
committed
Bump versions
Signed-off-by: Alex Nelson <[email protected]>
1 parent 83ece60 commit f2f87f1

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

case_utils/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@
1111
#
1212
# We would appreciate acknowledgement if the software is used.
1313

14-
__version__ = "0.4.0"
14+
__version__ = "0.5.0"
1515

1616
from . import local_uuid

case_utils/case_file/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
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.
1616
"""
1717

18-
__version__ = "0.3.0"
18+
__version__ = "0.3.1"
1919

2020
import argparse
2121
import datetime

case_utils/local_uuid.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
This library is a wrapper for uuid, provided to generate repeatable UUIDs if requested.
1616
"""
1717

18-
__version__ = "0.2.0"
18+
__version__ = "0.3.0"
1919

2020
import logging
2121
import os

case_utils/namespace.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@
1717
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.
1818
"""
1919

20+
__version__ = "0.1.0"
21+
2022
import rdflib # type: ignore
2123

2224
NS_SH = rdflib.SH

0 commit comments

Comments
 (0)