Skip to content

Commit 365e41c

Browse files
committed
1.7.0 release
1 parent 14c24b7 commit 365e41c

File tree

6 files changed

+10
-6
lines changed

6 files changed

+10
-6
lines changed

core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.sterl.spring</groupId>
88
<artifactId>spring-persistent-tasks-root</artifactId>
9-
<version>1.7.0-SNAPSHOT</version>
9+
<version>1.7.0</version>
1010
<relativePath>../pom.xml</relativePath>
1111
</parent>
1212

db/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.sterl.spring</groupId>
88
<artifactId>spring-persistent-tasks-root</artifactId>
9-
<version>1.7.0-SNAPSHOT</version>
9+
<version>1.7.0</version>
1010
<relativePath>../pom.xml</relativePath>
1111
</parent>
1212

pom.xml

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

1212
<groupId>org.sterl.spring</groupId>
1313
<artifactId>spring-persistent-tasks-root</artifactId>
14-
<version>1.7.0-SNAPSHOT</version>
14+
<version>1.7.0</version>
1515
<packaging>pom</packaging>
1616

1717
<inceptionYear>2024</inceptionYear>

test/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.sterl.spring</groupId>
88
<artifactId>spring-persistent-tasks-root</artifactId>
9-
<version>1.7.0-SNAPSHOT</version>
9+
<version>1.7.0</version>
1010
<relativePath>../pom.xml</relativePath>
1111
</parent>
1212

test/src/main/java/org/sterl/spring/persistent_tasks/test/Countdown.java

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ public class Countdown {
1111

1212
public void await() {
1313
Awaitility
14-
.await("Countdown")
14+
.await("Countdown " + count.get())
1515
.atMost(Duration.ofSeconds(3))
1616
.until(() -> count.get() <= 0);
1717
}
@@ -23,4 +23,8 @@ public void countDown() {
2323
public void reset() {
2424
count.set(1);
2525
}
26+
27+
public void reset(int newCount) {
28+
count.set(newCount);
29+
}
2630
}

ui/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.sterl.spring</groupId>
88
<artifactId>spring-persistent-tasks-root</artifactId>
9-
<version>1.7.0-SNAPSHOT</version>
9+
<version>1.7.0</version>
1010
<relativePath>../pom.xml</relativePath>
1111
</parent>
1212

0 commit comments

Comments
 (0)