Skip to content

Release 0.3.0 #27

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 2 commits into from
Nov 10, 2021
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: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,6 @@ case_sparql_select output.html input.sparql input.json [input-2.json ...]
case_sparql_select output.md input.sparql input.json [input-2.json ...]
```

Note that `case_sparql_select` is not guaranteed to function with Pythons below version 3.7.


### `local_uuid`

Expand Down
2 changes: 1 addition & 1 deletion case_utils/__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.2.1"
__version__ = "0.3.0"

import typing
import warnings
Expand Down
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.1.0"
__version__ = "0.2.0"

import datetime
import hashlib
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.1.0"
__version__ = "0.2.0"

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.3.0"
__version__ = "0.4.0"

import argparse
import binascii
Expand Down
2 changes: 1 addition & 1 deletion case_utils/local_uuid.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
This library is a wrapper for uuid, provided to generate repeatable UUIDs if requested.
"""

__version__ = "0.1.0"
__version__ = "0.2.0"

import os
import sys
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.1.0"
__version__ = "0.2.0"

import logging
import os
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.1.0"
__version__ = "0.2.0"

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.1.0"
__version__ = "0.2.0"

import argparse
import logging
Expand Down