From f832d1f7668d198001ab131f30afaf99691d0adf Mon Sep 17 00:00:00 2001 From: SvenLieber Date: Tue, 18 Aug 2020 10:56:52 +0200 Subject: [PATCH 1/3] first version of changelog --- CHANGELOG.md | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..7e0f872 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,27 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [0.2.0] - 2020-08-18 + +### Added + +- Several detectors for SHACL core constraints (directories `shape-constraints-stats` and `shape_constraint_detectors`) +- Detector for OWL exact qualified cardinality `owl:qualifiedCardinality` +- Detectors for OWL object and datatype domain/range (note they are not part of official OWL-RDF as it will just be `rdfs:domain` and `rdfs:range`) +- Detector for OWL subsumption `owl:subClassOf` (note this is not official OWL-RDF as it should just be `rdfs:subClassOf`) + +### Changed + +- Statistics namespace `rls` instead of `lrd` + +## [0.1.0] - 2018-12-10 + +### Added + +- v0.1.0 which contains an initial version covering the detection of common RDFS and OWL axioms + +[0.1.0]: https://github.com/IDLabResearch/lovstats/releases/tag/v0.1.0 From 94589650aa2f8e162ec0f1ca220252152b0b75ff Mon Sep 17 00:00:00 2001 From: SvenLieber Date: Tue, 18 Aug 2020 11:03:30 +0200 Subject: [PATCH 2/3] added changes --- CHANGELOG.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7e0f872..bd358bb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,10 +13,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Detector for OWL exact qualified cardinality `owl:qualifiedCardinality` - Detectors for OWL object and datatype domain/range (note they are not part of official OWL-RDF as it will just be `rdfs:domain` and `rdfs:range`) - Detector for OWL subsumption `owl:subClassOf` (note this is not official OWL-RDF as it should just be `rdfs:subClassOf`) +- new commandline option to specify a repository URI where the input was taken from, which will be added as dimension to the output stats ### Changed -- Statistics namespace `rls` instead of `lrd` +- Statistics namespace now `https://w3id.org/montolo/ns/montolo#` instead of `https://w3id.org/lovcube/ns/relovstats#` +- Statistics vocabulary namespace now `https://w3id.org/montolo/ns/montolo-voc#` instead of `https://w3id.org/lovcube/ns/lovcube#` ## [0.1.0] - 2018-12-10 From d60879a56066c337efc294c3d458e6797a4899e6 Mon Sep 17 00:00:00 2001 From: SvenLieber Date: Tue, 18 Aug 2020 11:10:09 +0200 Subject: [PATCH 3/3] added changes --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index bd358bb..0d9c454 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -27,3 +27,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - v0.1.0 which contains an initial version covering the detection of common RDFS and OWL axioms [0.1.0]: https://github.com/IDLabResearch/lovstats/releases/tag/v0.1.0 +[0.2.0]: https://github.com/IDLabResearch/lovstats/compare/v0.1.0...v0.2.0