Skip to content

Commit

Permalink
Merge branch 'release/0.0.13'
Browse files Browse the repository at this point in the history
  • Loading branch information
straumat committed Mar 31, 2020
2 parents fe5f7d3 + ae5de9e commit 312a413
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 9 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<!-- Project information -->
<groupId>tech.cassandre.trading.bot</groupId>
<artifactId>cassandre-trading-bot-project</artifactId>
<version>0.0.12</version>
<version>0.0.13</version>
<packaging>pom</packaging>
<name>Cassandre trading bot</name>
<url>https://github.com/cassandre-tech/cassandre-trading-bot</url>
Expand Down
4 changes: 2 additions & 2 deletions trading-bot-spring-boot-autoconfigure/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@
<dependency>
<groupId>org.junit-pioneer</groupId>
<artifactId>junit-pioneer</artifactId>
<version>0.5.4</version>
<version>0.5.5</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down Expand Up @@ -255,7 +255,7 @@
<parent>
<groupId>tech.cassandre.trading.bot</groupId>
<artifactId>cassandre-trading-bot-project</artifactId>
<version>0.0.12</version>
<version>0.0.13</version>
</parent>
<!-- =========================================================================================================== -->

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@

import static org.awaitility.Awaitility.with;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertFalse;
import static org.junit.jupiter.api.Assertions.assertTrue;
import static org.mockito.BDDMockito.given;
import static org.mockito.Mockito.mock;
Expand Down Expand Up @@ -92,8 +93,8 @@ public void multiThreadTest() {
with().await().untilAsserted(() -> assertEquals(numberOfValuesExpected, testableStrategy.getOrdersUpdateReceived().size()));

// Checking that all other data have been received.
assertTrue(testableStrategy.getTickersUpdateReceived().size() > 1);
assertTrue(testableStrategy.getAccountsUpdatesReceived().size() > 1);
assertFalse(testableStrategy.getTickersUpdateReceived().isEmpty());
assertFalse(testableStrategy.getAccountsUpdatesReceived().isEmpty());
}

/**
Expand Down
2 changes: 1 addition & 1 deletion trading-bot-spring-boot-starter-archetype/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@
<parent>
<groupId>tech.cassandre.trading.bot</groupId>
<artifactId>cassandre-trading-bot-project</artifactId>
<version>0.0.12</version>
<version>0.0.13</version>
</parent>
<!-- =========================================================================================================== -->

Expand Down
2 changes: 1 addition & 1 deletion trading-bot-spring-boot-starter/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@
<parent>
<groupId>tech.cassandre.trading.bot</groupId>
<artifactId>cassandre-trading-bot-project</artifactId>
<version>0.0.12</version>
<version>0.0.13</version>
</parent>
<!-- =========================================================================================================== -->

Expand Down
2 changes: 1 addition & 1 deletion trading-bot-strategies/dumb/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
<dependency>
<groupId>tech.cassandre.trading.bot</groupId>
<artifactId>cassandre-trading-bot-spring-boot-starter</artifactId>
<version>0.0.12</version>
<version>0.0.13</version>
</dependency>

<!-- Tests -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
<dependency>
<groupId>tech.cassandre.trading.bot</groupId>
<artifactId>cassandre-trading-bot-spring-boot-starter</artifactId>
<version>0.0.12</version>
<version>0.0.13</version>
</dependency>

<dependency>
Expand Down

0 comments on commit 312a413

Please sign in to comment.