Skip to content

Commit

Permalink
Merge pull request #94 from casework/bump_prerelease_pointers
Browse files Browse the repository at this point in the history
Bump prerelease pointers
  • Loading branch information
ajnelson-nist authored Sep 1, 2022
2 parents 4f8c53d + 2865165 commit 81bf019
Show file tree
Hide file tree
Showing 45 changed files with 59,188 additions and 1,047 deletions.
2 changes: 1 addition & 1 deletion dependencies/UCO-develop
Submodule UCO-develop updated 98 files
+11 −1 Makefile
+3 −3 README.md
+1 −1 dependencies/CASE-Utility-SHACL-Inheritance-Reviewer
+20 −0 ontology/Makefile
+3 −0 ontology/co/co.ttl
+59 −0 ontology/owl/Makefile
+355 −0 ontology/owl/owl.ttl
+41 −26 ontology/uco/action/action.ttl
+228 −0 ontology/uco/configuration/configuration.ttl
+112 −35 ontology/uco/core/core.ttl
+9 −6 ontology/uco/identity/identity.ttl
+6 −2 ontology/uco/location/location.ttl
+10 −4 ontology/uco/marking/marking.ttl
+37 −35 ontology/uco/master/uco.ttl
+1,311 −418 ontology/uco/observable/observable.ttl
+7 −2 ontology/uco/pattern/pattern.ttl
+6 −2 ontology/uco/role/role.ttl
+7 −2 ontology/uco/time/time.ttl
+34 −178 ontology/uco/tool/tool.ttl
+40 −45 ontology/uco/types/types.ttl
+6 −6 ontology/uco/victim/victim.ttl
+1,047 −971 ontology/uco/vocabulary/vocabulary.ttl
+1 −0 tests/.gitignore
+72 −6 tests/Makefile
+1 −0 tests/dependencies/.gitignore
+60 −0 tests/dependencies/Makefile
+24 −2 tests/examples/Makefile
+8 −7 tests/examples/action_inheritance_PASS.json
+1 −1 tests/examples/action_inheritance_PASS_validation.ttl
+8 −7 tests/examples/action_inheritance_XFAIL.json
+34 −93 tests/examples/action_inheritance_XFAIL_validation.ttl
+17 −17 tests/examples/action_result_PASS.json
+42 −42 tests/examples/co_PASS.json
+43 −43 tests/examples/co_XFAIL.json
+32 −32 tests/examples/co_XFAIL_validation.ttl
+66 −0 tests/examples/configuration_setting_PASS.json
+11 −0 tests/examples/configuration_setting_PASS_validation.ttl
+49 −0 tests/examples/configuration_setting_XFAIL.json
+39 −0 tests/examples/configuration_setting_XFAIL_validation.ttl
+30 −0 tests/examples/has_facet_inverse_functional_PASS.json
+11 −0 tests/examples/has_facet_inverse_functional_PASS_validation.ttl
+26 −0 tests/examples/has_facet_inverse_functional_XFAIL.json
+68 −0 tests/examples/has_facet_inverse_functional_XFAIL_validation.ttl
+1 −1 tests/examples/hash_PASS.json
+4 −4 tests/examples/hash_XFAIL.json
+26 −8 tests/examples/hash_XFAIL_validation.ttl
+8 −2 tests/examples/location_PASS.json
+6 −2 tests/examples/location_XFAIL.json
+7 −22 tests/examples/location_XFAIL_validation.ttl
+50 −49 tests/examples/message_thread_PASS.json
+50 −49 tests/examples/message_thread_XFAIL.json
+12 −30 tests/examples/message_thread_XFAIL_validation.ttl
+27 −0 tests/examples/owl_axiom_PASS.json
+11 −0 tests/examples/owl_axiom_PASS_validation.ttl
+28 −0 tests/examples/owl_axiom_XFAIL.json
+35 −0 tests/examples/owl_axiom_XFAIL_validation.ttl
+22 −0 tests/examples/owl_properties_PASS.json
+11 −0 tests/examples/owl_properties_PASS_validation.ttl
+31 −0 tests/examples/owl_properties_XFAIL.json
+77 −0 tests/examples/owl_properties_XFAIL_validation.ttl
+55 −0 tests/examples/rdf_list_PASS.json
+11 −0 tests/examples/rdf_list_PASS_validation.ttl
+59 −0 tests/examples/rdf_list_XFAIL.json
+56 −0 tests/examples/rdf_list_XFAIL_validation.ttl
+22 −22 tests/examples/relationship_PASS.json
+40 −40 tests/examples/relationship_XFAIL.json
+12 −12 tests/examples/relationship_XFAIL_validation.ttl
+140 −58 tests/examples/test_validation.py
+11 −11 tests/examples/thread_PASS.json
+24 −24 tests/examples/thread_XFAIL.json
+25 −11 tests/examples/thread_XFAIL_validation.ttl
+26 −0 tests/examples/uco_thing_XFAIL.json
+131 −0 tests/examples/uco_thing_XFAIL_validation.ttl
+1 −0 tests/shapes/.gitignore
+99 −0 tests/shapes/Makefile
+68 −0 tests/shapes/examples_uco_owl/Makefile
+112 −0 tests/shapes/examples_uco_owl/owl_incompatibleWith_shape_PASS.ttl
+141 −0 tests/shapes/examples_uco_owl/owl_incompatibleWith_shape_PASS_validation.ttl
+18 −0 tests/shapes/examples_uco_owl/owl_ontologyIRI_uniqueness_shape_PASS.ttl
+68 −0 tests/shapes/examples_uco_owl/owl_ontologyIRI_uniqueness_shape_PASS_validation.ttl
+13 −0 tests/shapes/examples_uco_owl/owl_ontologyIRI_versionIRI_prerequisite_shape_XFAIL.ttl
+21 −0 tests/shapes/examples_uco_owl/owl_ontologyIRI_versionIRI_prerequisite_shape_XFAIL_validation.ttl
+20 −0 tests/shapes/examples_uco_owl/owl_ontologyIRI_versionIRI_uniqueness_shape_PASS.ttl
+68 −0 tests/shapes/examples_uco_owl/owl_ontologyIRI_versionIRI_uniqueness_shape_PASS_validation.ttl
+16 −0 tests/shapes/examples_uco_owl/owl_versionIRI_multiversion_shape_PASS.ttl
+21 −0 tests/shapes/examples_uco_owl/owl_versionIRI_multiversion_shape_PASS_validation.ttl
+68 −0 tests/shapes/examples_uco_qc/Makefile
+28 −0 tests/shapes/examples_uco_qc/owl_Ontology_shape_property_owl_versionIRI_PASS.ttl
+11 −0 tests/shapes/examples_uco_qc/owl_Ontology_shape_property_owl_versionIRI_PASS_validation.ttl
+32 −0 tests/shapes/examples_uco_qc/owl_Ontology_shape_property_owl_versionIRI_XFAIL.ttl
+87 −0 tests/shapes/examples_uco_qc/owl_Ontology_shape_property_owl_versionIRI_XFAIL_validation.ttl
+39 −0 tests/shapes/examples_uco_qc/owl_Ontology_shape_sparql_imports_XFAIL.ttl
+74 −0 tests/shapes/examples_uco_qc/owl_Ontology_shape_sparql_imports_XFAIL_validation.ttl
+156 −0 tests/shapes/test_qc_shapes.py
+26 −0 tests/shapes/uco-closure-qc.ttl
+94 −0 tests/shapes/uco-qc.ttl
+0 −39 tests/src/glom_graph.py
+160 −9 tests/test_uco_monolithic.py
2 changes: 1 addition & 1 deletion dependencies/UCO-unstable
Submodule UCO-unstable updated 87 files
+3 −3 README.md
+3 −0 ontology/co/co.ttl
+142 −84 ontology/owl/owl.ttl
+28 −24 ontology/uco/action/action.ttl
+228 −0 ontology/uco/configuration/configuration.ttl
+110 −44 ontology/uco/core/core.ttl
+9 −6 ontology/uco/identity/identity.ttl
+6 −2 ontology/uco/location/location.ttl
+10 −4 ontology/uco/marking/marking.ttl
+37 −39 ontology/uco/master/uco.ttl
+1,049 −440 ontology/uco/observable/observable.ttl
+7 −2 ontology/uco/pattern/pattern.ttl
+6 −2 ontology/uco/role/role.ttl
+7 −2 ontology/uco/time/time.ttl
+34 −178 ontology/uco/tool/tool.ttl
+30 −76 ontology/uco/types/types.ttl
+6 −6 ontology/uco/victim/victim.ttl
+1,047 −898 ontology/uco/vocabulary/vocabulary.ttl
+1 −0 tests/.gitignore
+44 −3 tests/Makefile
+12 −8 tests/examples/Makefile
+8 −7 tests/examples/action_inheritance_PASS.json
+1 −1 tests/examples/action_inheritance_PASS_validation.ttl
+8 −7 tests/examples/action_inheritance_XFAIL.json
+34 −93 tests/examples/action_inheritance_XFAIL_validation.ttl
+17 −17 tests/examples/action_result_PASS.json
+42 −42 tests/examples/co_PASS.json
+43 −43 tests/examples/co_XFAIL.json
+32 −32 tests/examples/co_XFAIL_validation.ttl
+66 −0 tests/examples/configuration_setting_PASS.json
+0 −0 tests/examples/configuration_setting_PASS_validation.ttl
+49 −0 tests/examples/configuration_setting_XFAIL.json
+39 −0 tests/examples/configuration_setting_XFAIL_validation.ttl
+30 −0 tests/examples/has_facet_inverse_functional_PASS.json
+11 −0 tests/examples/has_facet_inverse_functional_PASS_validation.ttl
+26 −0 tests/examples/has_facet_inverse_functional_XFAIL.json
+68 −0 tests/examples/has_facet_inverse_functional_XFAIL_validation.ttl
+1 −1 tests/examples/hash_PASS.json
+4 −4 tests/examples/hash_XFAIL.json
+6 −17 tests/examples/hash_XFAIL_validation.ttl
+8 −2 tests/examples/location_PASS.json
+6 −2 tests/examples/location_XFAIL.json
+7 −22 tests/examples/location_XFAIL_validation.ttl
+50 −49 tests/examples/message_thread_PASS.json
+50 −49 tests/examples/message_thread_XFAIL.json
+12 −30 tests/examples/message_thread_XFAIL_validation.ttl
+0 −152 tests/examples/mime_PASS.json
+0 −37 tests/examples/mime_PASS_validation.ttl
+0 −28 tests/examples/mime_XFAIL.json
+0 −72 tests/examples/mime_XFAIL_validation.ttl
+0 −36 tests/examples/mime_prefix_PASS.json
+1 −1 tests/examples/owl_axiom_XFAIL_validation.ttl
+3 −3 tests/examples/owl_properties_XFAIL_validation.ttl
+22 −22 tests/examples/relationship_PASS.json
+40 −40 tests/examples/relationship_XFAIL.json
+12 −12 tests/examples/relationship_XFAIL_validation.ttl
+0 −98 tests/examples/test_mime.py
+94 −87 tests/examples/test_validation.py
+11 −11 tests/examples/thread_PASS.json
+24 −24 tests/examples/thread_XFAIL.json
+25 −11 tests/examples/thread_XFAIL_validation.ttl
+26 −0 tests/examples/uco_thing_XFAIL.json
+131 −0 tests/examples/uco_thing_XFAIL_validation.ttl
+1 −0 tests/shapes/.gitignore
+99 −0 tests/shapes/Makefile
+68 −0 tests/shapes/examples_uco_owl/Makefile
+112 −0 tests/shapes/examples_uco_owl/owl_incompatibleWith_shape_PASS.ttl
+141 −0 tests/shapes/examples_uco_owl/owl_incompatibleWith_shape_PASS_validation.ttl
+18 −0 tests/shapes/examples_uco_owl/owl_ontologyIRI_uniqueness_shape_PASS.ttl
+68 −0 tests/shapes/examples_uco_owl/owl_ontologyIRI_uniqueness_shape_PASS_validation.ttl
+13 −0 tests/shapes/examples_uco_owl/owl_ontologyIRI_versionIRI_prerequisite_shape_XFAIL.ttl
+21 −0 tests/shapes/examples_uco_owl/owl_ontologyIRI_versionIRI_prerequisite_shape_XFAIL_validation.ttl
+20 −0 tests/shapes/examples_uco_owl/owl_ontologyIRI_versionIRI_uniqueness_shape_PASS.ttl
+68 −0 tests/shapes/examples_uco_owl/owl_ontologyIRI_versionIRI_uniqueness_shape_PASS_validation.ttl
+16 −0 tests/shapes/examples_uco_owl/owl_versionIRI_multiversion_shape_PASS.ttl
+21 −0 tests/shapes/examples_uco_owl/owl_versionIRI_multiversion_shape_PASS_validation.ttl
+68 −0 tests/shapes/examples_uco_qc/Makefile
+28 −0 tests/shapes/examples_uco_qc/owl_Ontology_shape_property_owl_versionIRI_PASS.ttl
+11 −0 tests/shapes/examples_uco_qc/owl_Ontology_shape_property_owl_versionIRI_PASS_validation.ttl
+32 −0 tests/shapes/examples_uco_qc/owl_Ontology_shape_property_owl_versionIRI_XFAIL.ttl
+87 −0 tests/shapes/examples_uco_qc/owl_Ontology_shape_property_owl_versionIRI_XFAIL_validation.ttl
+39 −0 tests/shapes/examples_uco_qc/owl_Ontology_shape_sparql_imports_XFAIL.ttl
+74 −0 tests/shapes/examples_uco_qc/owl_Ontology_shape_sparql_imports_XFAIL_validation.ttl
+156 −0 tests/shapes/test_qc_shapes.py
+26 −0 tests/shapes/uco-closure-qc.ttl
+94 −0 tests/shapes/uco-qc.ttl
+53 −2 tests/test_uco_monolithic.py
5,237 changes: 5,049 additions & 188 deletions examples/illustrations/Oresteia/Oresteia_validation-develop.ttl

Large diffs are not rendered by default.

5,249 changes: 5,046 additions & 203 deletions examples/illustrations/Oresteia/Oresteia_validation-unstable.ttl

Large diffs are not rendered by default.

Loading

0 comments on commit 81bf019

Please sign in to comment.