Skip to content

Commit

Permalink
Merge pull request #69 from casework/release-0.7.0
Browse files Browse the repository at this point in the history
Release 0.7.0
  • Loading branch information
ajnelson-nist committed Sep 2, 2022
2 parents ebee1a2 + 6fd7919 commit 9b78310
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion case_utils/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@
#
# We would appreciate acknowledgement if the software is used.

__version__ = "0.6.0"
__version__ = "0.7.0"

from . import local_uuid # noqa: F401
2 changes: 1 addition & 1 deletion case_utils/case_file/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.2"
__version__ = "0.4.0"

import argparse
import datetime
Expand Down
2 changes: 1 addition & 1 deletion case_utils/case_sparql_construct/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
This script executes a SPARQL CONSTRUCT query, returning a graph of the generated triples.
"""

__version__ = "0.2.2"
__version__ = "0.2.3"

import argparse
import logging
Expand Down
2 changes: 1 addition & 1 deletion case_utils/case_sparql_select/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
Should a more complex query be necessary, an outer, wrapping SELECT query would let this script continue to function.
"""

__version__ = "0.4.2"
__version__ = "0.4.3"

import argparse
import binascii
Expand Down
2 changes: 1 addition & 1 deletion case_utils/case_validate/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
details.)
"""

__version__ = "0.1.2"
__version__ = "0.1.3"

import argparse
import importlib.resources
Expand Down
2 changes: 1 addition & 1 deletion case_utils/namespace.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
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"
__version__ = "0.2.0"

import rdflib

Expand Down
2 changes: 1 addition & 1 deletion case_utils/ontology/version_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
When preparing to build a new monolithic ontology, please edit this variable to match the new respective version.
"""

__version__ = "0.3.0"
__version__ = "0.4.0"

__all__ = ["CURRENT_CASE_VERSION", "built_version_choices_list"]

Expand Down

0 comments on commit 9b78310

Please sign in to comment.