Skip to content

Commit 6fd7919

Browse files
committed
Bump version
Signed-off-by: Alex Nelson <[email protected]>
1 parent ebee1a2 commit 6fd7919

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
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.6.0"
14+
__version__ = "0.7.0"
1515

1616
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
@@ -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.2"
18+
__version__ = "0.4.0"
1919

2020
import argparse
2121
import datetime

case_utils/case_sparql_construct/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
This script executes a SPARQL CONSTRUCT query, returning a graph of the generated triples.
1616
"""
1717

18-
__version__ = "0.2.2"
18+
__version__ = "0.2.3"
1919

2020
import argparse
2121
import logging

case_utils/case_sparql_select/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
Should a more complex query be necessary, an outer, wrapping SELECT query would let this script continue to function.
2727
"""
2828

29-
__version__ = "0.4.2"
29+
__version__ = "0.4.3"
3030

3131
import argparse
3232
import binascii

case_utils/case_validate/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
details.)
3030
"""
3131

32-
__version__ = "0.1.2"
32+
__version__ = "0.1.3"
3333

3434
import argparse
3535
import importlib.resources

case_utils/namespace.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
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"
20+
__version__ = "0.2.0"
2121

2222
import rdflib
2323

case_utils/ontology/version_info.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
When preparing to build a new monolithic ontology, please edit this variable to match the new respective version.
2020
"""
2121

22-
__version__ = "0.3.0"
22+
__version__ = "0.4.0"
2323

2424
__all__ = ["CURRENT_CASE_VERSION", "built_version_choices_list"]
2525

0 commit comments

Comments
 (0)