Unverified Commit 11b0c8eb authored by Maxime Lefrançois's avatar Maxime Lefrançois
Browse files

prepare v3.2.1

parent a771907e
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -18,7 +18,7 @@ stages:
test-develop:
  stage: test
  script:
    - curl -L -o saref-pipeline.jar "https://labs.etsi.org/rep/saref/saref-pipeline/-/jobs/artifacts/master/raw/target/saref-pipeline.jar?job=build"
    - curl -L -o saref-pipeline.jar "https://labs.etsi.org/rep/saref/saref-pipeline/-/releases/permalink/latest/downloads/saref-pipeline.jar"
    - java -jar saref-pipeline.jar develop -s && touch target/success
  allow_failure: true
  except:
@@ -35,7 +35,7 @@ test-develop:
test-prerelease:
  stage: test
  script:
    - curl -L -o saref-pipeline.jar "https://labs.etsi.org/rep/saref/saref-pipeline/-/jobs/artifacts/master/raw/target/saref-pipeline.jar?job=build"
    - curl -L -o saref-pipeline.jar "https://labs.etsi.org/rep/saref/saref-pipeline/-/releases/permalink/latest/downloads/saref-pipeline.jar"
    - java -jar saref-pipeline.jar release -t && touch target/success
  allow_failure: true
  only:
@@ -60,7 +60,7 @@ deploy-report:
test-release:
  stage: test
  script:
    - curl -L -o saref-pipeline.jar "https://labs.etsi.org/rep/saref/saref-pipeline/-/jobs/artifacts/master/raw/target/saref-pipeline.jar?job=build"
    - curl -L -o saref-pipeline.jar "https://labs.etsi.org/rep/saref/saref-pipeline/-/releases/permalink/latest/downloads/saref-pipeline.jar"
    - java -jar saref-pipeline.jar release -t
  only:
    - /^release-v/
+1 −1
Original line number Diff line number Diff line
@@ -3,4 +3,4 @@
- [Cornelis Bouter](https://www.linkedin.com/in/bouterca) ([TNO](https://tno.nl/))
- [Maria Poveda-Villalon](https://w3id.org/people/mpoveda/) ([Universidad Politécnica de Madrid](http://www.oeg-upm.net/))
- [Laura Daniele](https://www.linkedin.com/in/lauradaniele) ([TNO](https://tno.nl/))
- [Devid Gnabasik](https://www.linkedin.com/in/david-gnabasik-0056a0ba/) ([MINES Saint-Étienne](https://www.mines-stetienne.fr/))
- [David Gnabasik](https://www.linkedin.com/in/david-gnabasik-0056a0ba/) ([MINES Saint-Étienne](https://www.mines-stetienne.fr/))
+1 −1

File changed.

Preview size limit exceeded, changes collapsed.

+0 −0

File moved.

+7 −7
Original line number Diff line number Diff line
@@ -217,7 +217,7 @@ saref:actsUpon a owl:ObjectProperty ;
        [   a owl:Class ;
            owl:unionOf (
                saref:FeatureKind
                saref:Device
                saref:FeatureOfInterest
                saref:Function
                saref:FunctionOfInterest
                saref:Command
@@ -1275,7 +1275,7 @@ saref:hasFunction a owl:ObjectProperty ;
    owl:inverseOf saref:isFunctionOf ;
    rdfs:label "has function"@en ;
    rdfs:comment "Links a feature kind or a device to one of its functions."@en ;
    rdfs:domain [ a owl:Class ; owl:unionOf ( saref:FeatureKind saref:Device ) ] ;
    rdfs:domain [ a owl:Class ; owl:unionOf ( saref:FeatureKind saref:FeatureOfInterest ) ] ;
    rdfs:range saref:Function ;
    skos:historyNote "V3.2.1: Domain of saref:hasFunction is relaxed."@en .

@@ -1284,7 +1284,7 @@ saref:isFunctionOf a owl:ObjectProperty ;
    rdfs:label "is function of"@en ;
    rdfs:comment "Links a function to the feature kind or device it is a function of."@en ;
    rdfs:domain saref:Function ;
    rdfs:range [ a owl:Class ; owl:unionOf ( saref:FeatureKind saref:Device ) ] ;
    rdfs:range [ a owl:Class ; owl:unionOf ( saref:FeatureKind saref:FeatureOfInterest ) ] ;
    skos:historyNote "V3.2.1: Introduced saref:isFunctionOf."@en .

## Feature kinds inherit the functions of their broader feature kinds.
@@ -1789,16 +1789,16 @@ saref:ProcedureExecution a owl:Class ;
saref:madeBy a owl:ObjectProperty  ;
    owl:inverseOf saref:madeExecution ;
    rdfs:label "made by"@en ;
    rdfs:comment "Links a procedure execution to the device that made it."@en ;
    rdfs:comment "Links a procedure execution to the entity (e.g., device) that made it."@en ;
    rdfs:domain saref:ProcedureExecution ;
    rdfs:range saref:Device ;
    rdfs:range saref:FeatureOfInterest ;
    skos:historyNote "V3.2.1: Introduce saref:madeBy (resp. saref:madeExecution) as generalization of saref:measurementMadeBy (resp. saref:makesMeasurement)."@en .

saref:madeExecution a owl:ObjectProperty  ;
    owl:inverseOf saref:madeBy ;
    rdfs:label "made execution"@en ;
    rdfs:comment "Links a device to the procedure execution it made."@en ;
    rdfs:domain saref:Device ;
    rdfs:comment "Links an entity (e.g., device) to the procedure execution it made."@en ;
    rdfs:domain saref:FeatureOfInterest ;
    rdfs:range saref:ProcedureExecution .