Skip to content

Commit

Permalink
Merge branch 'release/0.0.12'
Browse files Browse the repository at this point in the history
  • Loading branch information
straumat committed Mar 31, 2020
2 parents b409db7 + a38ad93 commit fe5f7d3
Show file tree
Hide file tree
Showing 13 changed files with 23 additions and 18 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Cassandre
[Complete documentation is available here](https://trading-bot.cassandre.tech/)
![Continuous integration](https://github.com/cassandre-tech/cassandre-trading-bot/workflows/Continuous%20integration/badge.svg) [![Codacy Badge](https://api.codacy.com/project/badge/Grade/f26dc41008a64bb18dcd404b46b69fc8)](https://www.codacy.com/gh/cassandre-tech/cassandre-trading-bot?utm_source=github.com&utm_medium=referral&utm_content=cassandre-tech/cassandre-trading-bot&utm_campaign=Badge_Grade) [![Maven Central](https://img.shields.io/maven-central/v/tech.cassandre.trading.bot/cassandre-trading-bot-spring-boot-starter-archetype.svg?label=Maven%20Central)](https://search.maven.org/search?q=g:%22tech.cassandre.trading.bot%22%20AND%20a:%22cassandre-trading-bot-spring-boot-starter-archetype%22)

![](https://github.com/cassandre-tech/cassandre-trading-bot/workflows/ci/badge.svg) [![Codacy Badge](https://api.codacy.com/project/badge/Grade/f26dc41008a64bb18dcd404b46b69fc8)](https://www.codacy.com/gh/cassandre-tech/cassandre-trading-bot?utm_source=github.com&utm_medium=referral&utm_content=cassandre-tech/cassandre-trading-bot&utm_campaign=Badge_Grade) [![Maven Central](https://img.shields.io/maven-central/v/tech.cassandre.trading.bot/cassandre-trading-bot-spring-boot-starter-archetype.svg?label=Maven%20Central)](https://search.maven.org/search?q=g:%22tech.cassandre.trading.bot%22%20AND%20a:%22cassandre-trading-bot-spring-boot-starter-archetype%22)
[Complete documentation is available here](https://trading-bot.cassandre.tech/)
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.11</version>
<version>0.0.12</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/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Cassandre
[Complete documentation is available here](https://trading-bot.cassandre.tech/)
![Continuous integration](https://github.com/cassandre-tech/cassandre-trading-bot/workflows/Continuous%20integration/badge.svg) [![Codacy Badge](https://api.codacy.com/project/badge/Grade/f26dc41008a64bb18dcd404b46b69fc8)](https://www.codacy.com/gh/cassandre-tech/cassandre-trading-bot?utm_source=github.com&amp;utm_medium=referral&amp;utm_content=cassandre-tech/cassandre-trading-bot&amp;utm_campaign=Badge_Grade) [![Maven Central](https://img.shields.io/maven-central/v/tech.cassandre.trading.bot/cassandre-trading-bot-spring-boot-starter-archetype.svg?label=Maven%20Central)](https://search.maven.org/search?q=g:%22tech.cassandre.trading.bot%22%20AND%20a:%22cassandre-trading-bot-spring-boot-starter-archetype%22)

![](https://github.com/cassandre-tech/cassandre-trading-bot/workflows/ci/badge.svg) [![Codacy Badge](https://api.codacy.com/project/badge/Grade/f26dc41008a64bb18dcd404b46b69fc8)](https://www.codacy.com/gh/cassandre-tech/cassandre-trading-bot?utm_source=github.com&amp;utm_medium=referral&amp;utm_content=cassandre-tech/cassandre-trading-bot&amp;utm_campaign=Badge_Grade) [![Maven Central](https://img.shields.io/maven-central/v/tech.cassandre.trading.bot/cassandre-trading-bot-spring-boot-starter-archetype.svg?label=Maven%20Central)](https://search.maven.org/search?q=g:%22tech.cassandre.trading.bot%22%20AND%20a:%22cassandre-trading-bot-spring-boot-starter-archetype%22)
[Complete documentation is available here](https://trading-bot.cassandre.tech/)
2 changes: 1 addition & 1 deletion trading-bot-spring-boot-autoconfigure/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@
<parent>
<groupId>tech.cassandre.trading.bot</groupId>
<artifactId>cassandre-trading-bot-project</artifactId>
<version>0.0.11</version>
<version>0.0.12</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.assertTrue;
import static org.mockito.BDDMockito.given;
import static org.mockito.Mockito.mock;
import static tech.cassandre.trading.bot.test.util.BaseTest.PARAMETER_INVALID_STRATEGY_DEFAULT_VALUE;
Expand Down Expand Up @@ -91,8 +92,8 @@ public void multiThreadTest() {
with().await().untilAsserted(() -> assertEquals(numberOfValuesExpected, testableStrategy.getOrdersUpdateReceived().size()));

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

/**
Expand Down
4 changes: 2 additions & 2 deletions trading-bot-spring-boot-starter-archetype/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Cassandre
[Complete documentation is available here](https://trading-bot.cassandre.tech/)
![Continuous integration](https://github.com/cassandre-tech/cassandre-trading-bot/workflows/Continuous%20integration/badge.svg) [![Codacy Badge](https://api.codacy.com/project/badge/Grade/f26dc41008a64bb18dcd404b46b69fc8)](https://www.codacy.com/gh/cassandre-tech/cassandre-trading-bot?utm_source=github.com&amp;utm_medium=referral&amp;utm_content=cassandre-tech/cassandre-trading-bot&amp;utm_campaign=Badge_Grade) [![Maven Central](https://img.shields.io/maven-central/v/tech.cassandre.trading.bot/cassandre-trading-bot-spring-boot-starter-archetype.svg?label=Maven%20Central)](https://search.maven.org/search?q=g:%22tech.cassandre.trading.bot%22%20AND%20a:%22cassandre-trading-bot-spring-boot-starter-archetype%22)

![](https://github.com/cassandre-tech/cassandre-trading-bot/workflows/ci/badge.svg) [![Codacy Badge](https://api.codacy.com/project/badge/Grade/f26dc41008a64bb18dcd404b46b69fc8)](https://www.codacy.com/gh/cassandre-tech/cassandre-trading-bot?utm_source=github.com&amp;utm_medium=referral&amp;utm_content=cassandre-tech/cassandre-trading-bot&amp;utm_campaign=Badge_Grade) [![Maven Central](https://img.shields.io/maven-central/v/tech.cassandre.trading.bot/cassandre-trading-bot-spring-boot-starter-archetype.svg?label=Maven%20Central)](https://search.maven.org/search?q=g:%22tech.cassandre.trading.bot%22%20AND%20a:%22cassandre-trading-bot-spring-boot-starter-archetype%22)
[Complete documentation is available here](https://trading-bot.cassandre.tech/)
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.11</version>
<version>0.0.12</version>
</parent>
<!-- =========================================================================================================== -->

Expand Down
4 changes: 2 additions & 2 deletions trading-bot-spring-boot-starter/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Cassandre
[Complete documentation is available here](https://trading-bot.cassandre.tech/)
![Continuous integration](https://github.com/cassandre-tech/cassandre-trading-bot/workflows/Continuous%20integration/badge.svg) [![Codacy Badge](https://api.codacy.com/project/badge/Grade/f26dc41008a64bb18dcd404b46b69fc8)](https://www.codacy.com/gh/cassandre-tech/cassandre-trading-bot?utm_source=github.com&amp;utm_medium=referral&amp;utm_content=cassandre-tech/cassandre-trading-bot&amp;utm_campaign=Badge_Grade) [![Maven Central](https://img.shields.io/maven-central/v/tech.cassandre.trading.bot/cassandre-trading-bot-spring-boot-starter-archetype.svg?label=Maven%20Central)](https://search.maven.org/search?q=g:%22tech.cassandre.trading.bot%22%20AND%20a:%22cassandre-trading-bot-spring-boot-starter-archetype%22)

![](https://github.com/cassandre-tech/cassandre-trading-bot/workflows/ci/badge.svg) [![Codacy Badge](https://api.codacy.com/project/badge/Grade/f26dc41008a64bb18dcd404b46b69fc8)](https://www.codacy.com/gh/cassandre-tech/cassandre-trading-bot?utm_source=github.com&amp;utm_medium=referral&amp;utm_content=cassandre-tech/cassandre-trading-bot&amp;utm_campaign=Badge_Grade) [![Maven Central](https://img.shields.io/maven-central/v/tech.cassandre.trading.bot/cassandre-trading-bot-spring-boot-starter-archetype.svg?label=Maven%20Central)](https://search.maven.org/search?q=g:%22tech.cassandre.trading.bot%22%20AND%20a:%22cassandre-trading-bot-spring-boot-starter-archetype%22)
[Complete documentation is available here](https://trading-bot.cassandre.tech/)
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.11</version>
<version>0.0.12</version>
</parent>
<!-- =========================================================================================================== -->

Expand Down
4 changes: 2 additions & 2 deletions trading-bot-strategies/dumb/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Cassandre
[Complete documentation is available here](https://trading-bot.cassandre.tech/)
![Continuous integration](https://github.com/cassandre-tech/cassandre-trading-bot/workflows/Continuous%20integration/badge.svg) [![Codacy Badge](https://api.codacy.com/project/badge/Grade/f26dc41008a64bb18dcd404b46b69fc8)](https://www.codacy.com/gh/cassandre-tech/cassandre-trading-bot?utm_source=github.com&amp;utm_medium=referral&amp;utm_content=cassandre-tech/cassandre-trading-bot&amp;utm_campaign=Badge_Grade) [![Maven Central](https://img.shields.io/maven-central/v/tech.cassandre.trading.bot/cassandre-trading-bot-spring-boot-starter-archetype.svg?label=Maven%20Central)](https://search.maven.org/search?q=g:%22tech.cassandre.trading.bot%22%20AND%20a:%22cassandre-trading-bot-spring-boot-starter-archetype%22)

![](https://github.com/cassandre-tech/cassandre-trading-bot/workflows/ci/badge.svg) [![Codacy Badge](https://api.codacy.com/project/badge/Grade/f26dc41008a64bb18dcd404b46b69fc8)](https://www.codacy.com/gh/cassandre-tech/cassandre-trading-bot?utm_source=github.com&amp;utm_medium=referral&amp;utm_content=cassandre-tech/cassandre-trading-bot&amp;utm_campaign=Badge_Grade)
[Complete documentation is available here](https://trading-bot.cassandre.tech/)
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.11</version>
<version>0.0.12</version>
</dependency>

<!-- Tests -->
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Cassandre
![Continuous integration](https://github.com/cassandre-tech/cassandre-trading-bot/workflows/Continuous%20integration/badge.svg) [![Codacy Badge](https://api.codacy.com/project/badge/Grade/f26dc41008a64bb18dcd404b46b69fc8)](https://www.codacy.com/gh/cassandre-tech/cassandre-trading-bot?utm_source=github.com&amp;utm_medium=referral&amp;utm_content=cassandre-tech/cassandre-trading-bot&amp;utm_campaign=Badge_Grade) [![Maven Central](https://img.shields.io/maven-central/v/tech.cassandre.trading.bot/cassandre-trading-bot-spring-boot-starter-archetype.svg?label=Maven%20Central)](https://search.maven.org/search?q=g:%22tech.cassandre.trading.bot%22%20AND%20a:%22cassandre-trading-bot-spring-boot-starter-archetype%22)

[Complete documentation is available here](https://trading-bot.cassandre.tech/)
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.11</version>
<version>0.0.12</version>
</dependency>

<dependency>
Expand Down

0 comments on commit fe5f7d3

Please sign in to comment.