Skip to content

Commit 46d6bb7

Browse files
committed
Bump versions
Signed-off-by: Alex Nelson <[email protected]>
1 parent 75124cd commit 46d6bb7

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.7.0"
14+
__version__ = "0.8.0"
1515

1616
from . import local_uuid # noqa: F401

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.3"
18+
__version__ = "0.2.4"
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.3"
29+
__version__ = "0.4.4"
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.3"
32+
__version__ = "0.2.0"
3333

3434
import argparse
3535
import importlib.resources

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.3.0"
18+
__version__ = "0.3.1"
1919

2020
import logging
2121
import os

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.2.0"
20+
__version__ = "0.2.1"
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.4.0"
22+
__version__ = "0.5.0"
2323

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

0 commit comments

Comments
 (0)