Skip to content

Commit 66fdaa2

Browse files
Merge pull request #27 from casework/release-0.3.0
Release 0.3.0
2 parents c39a9cd + 1acc5e2 commit 66fdaa2

File tree

9 files changed

+8
-10
lines changed

9 files changed

+8
-10
lines changed

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,8 +91,6 @@ case_sparql_select output.html input.sparql input.json [input-2.json ...]
9191
case_sparql_select output.md input.sparql input.json [input-2.json ...]
9292
```
9393

94-
Note that `case_sparql_select` is not guaranteed to function with Pythons below version 3.7.
95-
9694

9795
### `local_uuid`
9896

case_utils/__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.2.1"
14+
__version__ = "0.3.0"
1515

1616
import typing
1717
import warnings

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

2020
import datetime
2121
import hashlib

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.1.0"
18+
__version__ = "0.2.0"
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.3.0"
29+
__version__ = "0.4.0"
3030

3131
import argparse
3232
import binascii

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

2020
import os
2121
import sys

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

2323
import logging
2424
import os

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.1.0"
18+
__version__ = "0.2.0"
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.1.0"
30+
__version__ = "0.2.0"
3131

3232
import argparse
3333
import logging

0 commit comments

Comments
 (0)