Skip to content

Commit 80d76ab

Browse files
committed
Bump versions
Signed-off-by: Alex Nelson <[email protected]>
1 parent f0a31e6 commit 80d76ab

File tree

10 files changed

+10
-10
lines changed

10 files changed

+10
-10
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.5.0"
14+
__version__ = "0.6.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.1"
18+
__version__ = "0.3.2"
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.1"
18+
__version__ = "0.2.2"
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.1"
29+
__version__ = "0.4.2"
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.1"
32+
__version__ = "0.1.2"
3333

3434
import argparse
3535
import importlib.resources

case_utils/ontology/__init__.py

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

14-
__version__ = "0.1.0"
14+
__version__ = "0.1.1"
1515

1616
import importlib.resources
1717
import logging

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.2.0"
22+
__version__ = "0.3.0"
2323

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

tests/src/compact.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
https://www.w3.org/TR/json-ld11/#terms
1919
"""
2020

21-
__version__ = "0.2.0"
21+
__version__ = "0.2.1"
2222

2323
import json
2424
import logging

tests/src/glom_graph.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
This script takes multiple input JSON-LD or Turtle files and emits a single Turtle graph.
1616
"""
1717

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

2020
import rdflib # type: ignore
2121

tests/src/isomorphic_diff.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
On resolution of rdflib issue 812, and on adding some format-support flexibility, isomorphic_diff.py is likely to be deprecated in favor of using the upstream rdfgraphisomorphism command.
2828
"""
2929

30-
__version__ = "0.2.0"
30+
__version__ = "0.2.1"
3131

3232
import argparse
3333
import logging

0 commit comments

Comments
 (0)