aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFederico Igne <federico.igne@cs.ox.ac.uk>2022-05-19 16:06:57 +0100
committerFederico Igne <federico.igne@cs.ox.ac.uk>2022-05-19 16:06:57 +0100
commit43d573f7fbfb36dce5f6d9016ccca2ddd9936e97 (patch)
tree7896dc06e1d74e96290a17cf95d89a2be621ccd9
parentace698dedd486e64127aeb96af6675fa461377ed (diff)
downloadRSAComb-43d573f7fbfb36dce5f6d9016ccca2ddd9936e97.tar.gz
RSAComb-43d573f7fbfb36dce5f6d9016ccca2ddd9936e97.zip
bump: RSAComb v1.1.0
-rw-r--r--.github/workflows/pom.yml2
-rw-r--r--README.md4
-rw-r--r--build.sbt2
3 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/pom.yml b/.github/workflows/pom.yml
index 60b7411..bcd5e98 100644
--- a/.github/workflows/pom.yml
+++ b/.github/workflows/pom.yml
@@ -26,7 +26,7 @@ jobs:
26 with: 26 with:
27 commit_user_name: GitHub POM Action 27 commit_user_name: GitHub POM Action
28 commit_user_email: "gh-pom@github.com" 28 commit_user_email: "gh-pom@github.com"
29 commit_message: " Update POM dependences" 29 commit_message: "bump(pom): update dependences"
30 commit_options: '--no-verify --signoff' 30 commit_options: '--no-verify --signoff'
31 file_pattern: pom.xml 31 file_pattern: pom.xml
32 32
diff --git a/README.md b/README.md
index 3903c66..a177557 100644
--- a/README.md
+++ b/README.md
@@ -50,7 +50,7 @@ In order to use this program you need to have [RDFox](https://www.oxfordsemantic
50RDFox is proprietary software and as such we are not able to distribute it along with our code. 50RDFox is proprietary software and as such we are not able to distribute it along with our code.
51Please refer to [this link](https://www.oxfordsemantic.tech/tryrdfoxforfree) to request a free trial. 51Please refer to [this link](https://www.oxfordsemantic.tech/tryrdfoxforfree) to request a free trial.
52 52
53This software has been developed and tested with RDFox v5.2.1 53This software has been developed and tested with RDFox v5.5
54 54
55## Changes introduced 55## Changes introduced
56 56
@@ -184,7 +184,7 @@ We also provide a convenient `simulate.rdfox` RDFox script that can be used to l
184 184
185Let's suppose you run the following command from the root of the project 185Let's suppose you run the following command from the root of the project
186```{.sh} 186```{.sh}
187java -cp lib/JRDFox.jar:target/scala-2.13/RSAComb-assembly-1.0.0.jar uk.ac.ox.cs.rsacomb.RSAComb -l verbose -o tests/lubm/univ-bench.owl -d tests/lubm/data/lubm1.ttl -q tests/lubm/queries.sparql 187java -cp lib/JRDFox.jar:target/scala-2.13/RSAComb-assembly-1.1.0.jar uk.ac.ox.cs.rsacomb.RSAComb -l verbose -o tests/lubm/univ-bench.owl -d tests/lubm/data/lubm1.ttl -q tests/lubm/queries.sparql
188``` 188```
189 189
190This will answers all the queries in `tests/lubm/queries.sparql` and generate debug information in a new folder in the current working directory (let's say, `rsacomb-20211005120845/`). 190This will answers all the queries in `tests/lubm/queries.sparql` and generate debug information in a new folder in the current working directory (let's say, `rsacomb-20211005120845/`).
diff --git a/build.sbt b/build.sbt
index 99788c8..48fd459 100644
--- a/build.sbt
+++ b/build.sbt
@@ -1,7 +1,7 @@
1import Dependencies._ 1import Dependencies._
2 2
3ThisBuild / scalaVersion := "2.13.4" 3ThisBuild / scalaVersion := "2.13.4"
4ThisBuild / version := "1.0.0" 4ThisBuild / version := "1.1.0"
5ThisBuild / organization := "uk.ac.ox.cs.rsacomb" 5ThisBuild / organization := "uk.ac.ox.cs.rsacomb"
6ThisBuild / organizationName := "Department of Computer Science - University of Oxford" 6ThisBuild / organizationName := "Department of Computer Science - University of Oxford"
7ThisBuild / organizationHomepage := Some(url("https://www.cs.ox.ac.uk")) 7ThisBuild / organizationHomepage := Some(url("https://www.cs.ox.ac.uk"))