Skip to content
This repository was archived by the owner on Jun 7, 2023. It is now read-only.

Commit 74570b5

Browse files
author
Brord van Wierst
authored
Merge pull request #185 from kwek20/beta6
1.0.0-beta6
2 parents d8a9cf3 + f2438e6 commit 74570b5

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ To download the IOTA Java client library and its dependencies, you can use one o
6969
7070
```gradle
7171
dependencies {
72-
compile 'com.github.iotaledger:iota-java:1.0.0-beta5'
72+
compile 'com.github.iotaledger:iota-java:1.0.0-beta6'
7373
}
7474
```
7575
@@ -96,7 +96,7 @@ To download the IOTA Java client library and its dependencies, you can use one o
9696
```
9797
9898
3. Change the value of the `<version>` tag to either a release number or the first 10 characters of a Git commit hash:
99-
`<version>e4fd314b3e</version>` or `<version>1.0.0-beta5</version>`
99+
`<version>efdc784d8a9ef</version>` or `<version>1.0.0-beta6</version>`
100100
101101
**Note:** Find the latest version on the [Jitpack](https://jitpack.io/#iotaledger/iota-java) page.
102102
@@ -182,6 +182,7 @@ We have a list of test cases on the [`src/test/java` directory][tests] that you
182182
A good starter is the [`IotaAPITest` case](https://github.com/iotaledger/iota-java/blob/master/jota/src/test/java/org/iota/jota/IotaAPITest.java).
183183

184184
## Change logs:
185+
- Changes in [**1.0.0-beta6**](https://github.com/iotaledger/iota-java/compare/1.0.0-beta5...1.0.0-beta6)
185186
- Changes in [**1.0.0-beta5**](https://github.com/iotaledger/iota-java/compare/1.0.0-beta4...1.0.0-beta5)
186187
- Changes in [**1.0.0-beta4**](https://github.com/iotaledger/iota-java/compare/1.0.0-beta3...1.0.0-beta4)
187188
- Changes in [**1.0.0-beta3**](https://github.com/iotaledger/iota-java/compare/1.0.0-beta2...1.0.0-beta3)

jota/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.iota</groupId>
77
<artifactId>jota-parent</artifactId>
8-
<version>1.0.0-beta5</version>
8+
<version>1.0.0-beta6</version>
99
</parent>
1010

1111
<name>JOTA : Library</name>

jota/src/test/java/org/iota/jota/IotaAPITest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -347,7 +347,7 @@ public void shouldCheckConsistency() throws ArgumentException {
347347
@Test
348348
@Tag("IntegrationTest")
349349
public void shouldGetTransfers(){
350-
GetTransferResponse gtr = iotaAPI.getTransfers(TEST_SEED3, 2, 0, 0, false);
350+
GetTransferResponse gtr = iotaAPI.getTransfers(TEST_SEED3, 2, 0, 10, false);
351351
assertThat("GetTransfers should return GetTransferResponse object on success", gtr.getTransfers(), IsNull.notNullValue());
352352
assertTrue(gtr.getTransfers().length > 0, "GetTransfers should return more than 0 transfers");
353353
}

pom.xml

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

66
<groupId>org.iota</groupId>
77
<artifactId>jota-parent</artifactId>
8-
<version>1.0.0-beta5</version>
8+
<version>1.0.0-beta6</version>
99
<packaging>pom</packaging>
1010
<name>JOTA</name>
1111
<description>JOTA library is a simple Java wrapper around IOTA Node's JSON-REST HTTP interface.</description>

0 commit comments

Comments
 (0)