Skip to content

Commit 6a45bc0

Browse files
committed
bump version number to 2.1.0
1 parent 8036d59 commit 6a45bc0

8 files changed

Lines changed: 9 additions & 9 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,11 +47,11 @@ To add DiffDetective as a dependency to your own project, add the following snip
4747
<dependency>
4848
<groupId>org.variantsync</groupId>
4949
<artifactId>DiffDetective</artifactId>
50-
<version>2.0.0</version>
50+
<version>2.1.0</version>
5151
</dependency>
5252
```
5353

54-
If you prefer to just use a jar file, you can find a jar file with all dependencies at `DiffDetective/target/diffdetective-2.0.0-jar-with-dependencies.jar` (again, the version number might be different).
54+
If you prefer to just use a jar file, you can find a jar file with all dependencies at `DiffDetective/target/diffdetective-2.1.0-jar-with-dependencies.jar` (again, the version number might be different).
5555
You can (re-)produce this jar file by either running `mvn package` or `mvn install` within you local clone of DiffDetective.
5656

5757
> Disclaimer: Setup tested with maven version 3.6.3.

default.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
}:
1313
pkgs.stdenv.mkDerivation rec {
1414
pname = "DiffDetective";
15-
version = "2.0.0";
15+
version = "2.1.0";
1616
src = with pkgs.lib.fileset;
1717
toSource {
1818
root = ./.;

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>org.variantsync</groupId>
88
<artifactId>diffdetective</artifactId>
9-
<version>2.0.0</version>
9+
<version>2.1.0</version>
1010

1111
<properties>
1212
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

replication/esecfse22/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ WORKDIR /home/sherlock
3232
# Copy the compiled JAR file from the first stage into the second stage
3333
# Syntax: COPY --from=STAGE_ID SOURCE_PATH TARGET_PATH
3434
WORKDIR /home/sherlock/holmes
35-
COPY --from=0 /home/user/target/diffdetective-2.0.0-jar-with-dependencies.jar ./DiffDetective.jar
35+
COPY --from=0 /home/user/target/diffdetective-2.1.0-jar-with-dependencies.jar ./DiffDetective.jar
3636
WORKDIR /home/sherlock
3737
RUN mkdir results
3838

replication/splc23-views/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ WORKDIR /home/sherlock
3838
# Copy the compiled JAR file from the first stage into the second stage
3939
# Syntax: COPY --from=STAGE_ID SOURCE_PATH TARGET_PATH
4040
WORKDIR /home/sherlock/holmes
41-
COPY --from=0 /home/user/target/diffdetective-2.0.0-jar-with-dependencies.jar ./DiffDetective.jar
41+
COPY --from=0 /home/user/target/diffdetective-2.1.0-jar-with-dependencies.jar ./DiffDetective.jar
4242
WORKDIR /home/sherlock
4343

4444
# Copy the setup

scripts/genUltimateResults.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
resultsdir=$1
22

3-
java -cp "target/diffdetective-2.0.0-jar-with-dependencies.jar" org.variantsync.diffdetective.tablegen.MiningResultAccumulator $resultsdir $resultsdir
3+
java -cp "target/diffdetective-2.1.0-jar-with-dependencies.jar" org.variantsync.diffdetective.tablegen.MiningResultAccumulator $resultsdir $resultsdir
44
echo "genUltimateResults.sh DONE"

scripts/runValidation.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
java -cp "target/diffdetective-2.0.0-jar-with-dependencies.jar" org.variantsync.diffdetective.validation.EditClassValidation
1+
java -cp "target/diffdetective-2.1.0-jar-with-dependencies.jar" org.variantsync.diffdetective.validation.EditClassValidation
22
echo "runValidation.sh DONE"

scripts/runViewFeasibilityStudy.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
java -cp "target/diffdetective-2.0.0-jar-with-dependencies.jar" org.variantsync.diffdetective.experiments.views.Main "docs/datasets/views.md"
1+
java -cp "target/diffdetective-2.1.0-jar-with-dependencies.jar" org.variantsync.diffdetective.experiments.views.Main "docs/datasets/views.md"
22
echo "runValidation.sh DONE"

0 commit comments

Comments
 (0)