Skip to content

Release 0.6.0 #61

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 17, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.5.0"
__version__ = "0.6.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.1"
__version__ = "0.3.2"

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.1"
__version__ = "0.2.2"

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.1"
__version__ = "0.4.2"

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.1"
__version__ = "0.1.2"

import argparse
import importlib.resources
Expand Down
2 changes: 1 addition & 1 deletion case_utils/ontology/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
#
# We would appreciate acknowledgement if the software is used.

__version__ = "0.1.0"
__version__ = "0.1.1"

import importlib.resources
import logging
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.2.0"
__version__ = "0.3.0"

__all__ = ["CURRENT_CASE_VERSION", "built_version_choices_list"]

Expand Down
2 changes: 1 addition & 1 deletion tests/src/compact.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
https://www.w3.org/TR/json-ld11/#terms
"""

__version__ = "0.2.0"
__version__ = "0.2.1"

import json
import logging
Expand Down
2 changes: 1 addition & 1 deletion tests/src/glom_graph.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
This script takes multiple input JSON-LD or Turtle files and emits a single Turtle graph.
"""

__version__ = "0.2.0"
__version__ = "0.2.1"

import rdflib # type: ignore

Expand Down
2 changes: 1 addition & 1 deletion tests/src/isomorphic_diff.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
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.
"""

__version__ = "0.2.0"
__version__ = "0.2.1"

import argparse
import logging
Expand Down