Skip to content

Commit 7e70f74

Browse files
authored
Merge pull request #125 from casework/release-0.12.0
Release 0.12.0
2 parents 435d67e + 0e895b6 commit 7e70f74

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+817
-399
lines changed

.github/workflows/cicd.yml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
1+
# Portions of this file contributed by NIST are governed by the following
2+
# statement:
3+
#
14
# This software was developed at the National Institute of Standards
25
# and Technology by employees of the Federal Government in the course
3-
# of their official duties. Pursuant to title 17 Section 105 of the
4-
# United States Code this software is not subject to copyright
5-
# protection and is in the public domain. NIST assumes no
6-
# responsibility whatsoever for its use by other parties, and makes
7-
# no guarantees, expressed or implied, about its quality,
8-
# reliability, or any other characteristic.
6+
# of their official duties. Pursuant to Title 17 Section 105 of the
7+
# United States Code, this software is not subject to copyright
8+
# protection within the United States. NIST assumes no responsibility
9+
# whatsoever for its use by other parties, and makes no guarantees,
10+
# expressed or implied, about its quality, reliability, or any other
11+
# characteristic.
912
#
1013
# We would appreciate acknowledgement if the software is used.
1114

Makefile

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,16 @@
11
#!/usr/bin/make -f
22

3+
# Portions of this file contributed by NIST are governed by the following
4+
# statement:
5+
#
36
# This software was developed at the National Institute of Standards
47
# and Technology by employees of the Federal Government in the course
5-
# of their official duties. Pursuant to title 17 Section 105 of the
6-
# United States Code this software is not subject to copyright
7-
# protection and is in the public domain. NIST assumes no
8-
# responsibility whatsoever for its use by other parties, and makes
9-
# no guarantees, expressed or implied, about its quality,
10-
# reliability, or any other characteristic.
8+
# of their official duties. Pursuant to Title 17 Section 105 of the
9+
# United States Code, this software is not subject to copyright
10+
# protection within the United States. NIST assumes no responsibility
11+
# whatsoever for its use by other parties, and makes no guarantees,
12+
# expressed or implied, about its quality, reliability, or any other
13+
# characteristic.
1114
#
1215
# We would appreciate acknowledgement if the software is used.
1316

case_utils/__init__.py

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,19 @@
11
#!/usr/bin/env python3
22

3+
# Portions of this file contributed by NIST are governed by the following
4+
# statement:
5+
#
36
# This software was developed at the National Institute of Standards
47
# and Technology by employees of the Federal Government in the course
5-
# of their official duties. Pursuant to title 17 Section 105 of the
6-
# United States Code this software is not subject to copyright
7-
# protection and is in the public domain. NIST assumes no
8-
# responsibility whatsoever for its use by other parties, and makes
9-
# no guarantees, expressed or implied, about its quality,
10-
# reliability, or any other characteristic.
8+
# of their official duties. Pursuant to Title 17 Section 105 of the
9+
# United States Code, this software is not subject to copyright
10+
# protection within the United States. NIST assumes no responsibility
11+
# whatsoever for its use by other parties, and makes no guarantees,
12+
# expressed or implied, about its quality, reliability, or any other
13+
# characteristic.
1114
#
1215
# We would appreciate acknowledgement if the software is used.
1316

14-
__version__ = "0.11.0"
17+
__version__ = "0.12.0"
1518

1619
from . import local_uuid # noqa: F401

case_utils/case_file/__init__.py

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,24 @@
11
#!/usr/bin/env python3
22

3+
# Portions of this file contributed by NIST are governed by the following
4+
# statement:
5+
#
36
# This software was developed at the National Institute of Standards
47
# and Technology by employees of the Federal Government in the course
5-
# of their official duties. Pursuant to title 17 Section 105 of the
6-
# United States Code this software is not subject to copyright
7-
# protection and is in the public domain. NIST assumes no
8-
# responsibility whatsoever for its use by other parties, and makes
9-
# no guarantees, expressed or implied, about its quality,
10-
# reliability, or any other characteristic.
8+
# of their official duties. Pursuant to Title 17 Section 105 of the
9+
# United States Code, this software is not subject to copyright
10+
# protection within the United States. NIST assumes no responsibility
11+
# whatsoever for its use by other parties, and makes no guarantees,
12+
# expressed or implied, about its quality, reliability, or any other
13+
# characteristic.
1114
#
1215
# We would appreciate acknowledgement if the software is used.
1316

1417
"""
1518
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.
1619
"""
1720

18-
__version__ = "0.5.0"
21+
__version__ = "0.5.1"
1922

2023
import argparse
2124
import datetime

case_utils/case_sparql_construct/__init__.py

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,24 @@
11
#!/usr/bin/env python3
22

3+
# Portions of this file contributed by NIST are governed by the following
4+
# statement:
5+
#
36
# This software was developed at the National Institute of Standards
47
# and Technology by employees of the Federal Government in the course
5-
# of their official duties. Pursuant to title 17 Section 105 of the
6-
# United States Code this software is not subject to copyright
7-
# protection and is in the public domain. NIST assumes no
8-
# responsibility whatsoever for its use by other parties, and makes
9-
# no guarantees, expressed or implied, about its quality,
10-
# reliability, or any other characteristic.
8+
# of their official duties. Pursuant to Title 17 Section 105 of the
9+
# United States Code, this software is not subject to copyright
10+
# protection within the United States. NIST assumes no responsibility
11+
# whatsoever for its use by other parties, and makes no guarantees,
12+
# expressed or implied, about its quality, reliability, or any other
13+
# characteristic.
1114
#
1215
# We would appreciate acknowledgement if the software is used.
1316

1417
"""
1518
This script executes a SPARQL CONSTRUCT query, returning a graph of the generated triples.
1619
"""
1720

18-
__version__ = "0.2.5"
21+
__version__ = "0.2.6"
1922

2023
import argparse
2124
import logging

case_utils/case_sparql_select/__init__.py

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,16 @@
11
#!/usr/bin/env python3
22

3+
# Portions of this file contributed by NIST are governed by the following
4+
# statement:
5+
#
36
# This software was developed at the National Institute of Standards
47
# and Technology by employees of the Federal Government in the course
5-
# of their official duties. Pursuant to title 17 Section 105 of the
6-
# United States Code this software is not subject to copyright
7-
# protection and is in the public domain. NIST assumes no
8-
# responsibility whatsoever for its use by other parties, and makes
9-
# no guarantees, expressed or implied, about its quality,
10-
# reliability, or any other characteristic.
8+
# of their official duties. Pursuant to Title 17 Section 105 of the
9+
# United States Code, this software is not subject to copyright
10+
# protection within the United States. NIST assumes no responsibility
11+
# whatsoever for its use by other parties, and makes no guarantees,
12+
# expressed or implied, about its quality, reliability, or any other
13+
# characteristic.
1114
#
1215
# We would appreciate acknowledgement if the software is used.
1316

@@ -26,7 +29,7 @@
2629
Should a more complex query be necessary, an outer, wrapping SELECT query would let this script continue to function.
2730
"""
2831

29-
__version__ = "0.5.1"
32+
__version__ = "0.5.2"
3033

3134
import argparse
3235
import binascii

0 commit comments

Comments
 (0)