Skip to content
This repository was archived by the owner on Jun 7, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ To download the IOTA Java client library and its dependencies, you can use one o

```gradle
dependencies {
compile 'com.github.iotaledger:iota-java:1.0.0-beta5'
compile 'com.github.iotaledger:iota-java:1.0.0-beta6'
}
```

Expand All @@ -96,7 +96,7 @@ To download the IOTA Java client library and its dependencies, you can use one o
```

3. Change the value of the `<version>` tag to either a release number or the first 10 characters of a Git commit hash:
`<version>e4fd314b3e</version>` or `<version>1.0.0-beta5</version>`
`<version>efdc784d8a9ef</version>` or `<version>1.0.0-beta6</version>`

**Note:** Find the latest version on the [Jitpack](https://jitpack.io/#iotaledger/iota-java) page.

Expand Down Expand Up @@ -182,6 +182,7 @@ We have a list of test cases on the [`src/test/java` directory][tests] that you
A good starter is the [`IotaAPITest` case](https://github.com/iotaledger/iota-java/blob/master/jota/src/test/java/org/iota/jota/IotaAPITest.java).

## Change logs:
- Changes in [**1.0.0-beta6**](https://github.com/iotaledger/iota-java/compare/1.0.0-beta5...1.0.0-beta6)
- Changes in [**1.0.0-beta5**](https://github.com/iotaledger/iota-java/compare/1.0.0-beta4...1.0.0-beta5)
- Changes in [**1.0.0-beta4**](https://github.com/iotaledger/iota-java/compare/1.0.0-beta3...1.0.0-beta4)
- Changes in [**1.0.0-beta3**](https://github.com/iotaledger/iota-java/compare/1.0.0-beta2...1.0.0-beta3)
Expand Down
2 changes: 1 addition & 1 deletion jota/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.iota</groupId>
<artifactId>jota-parent</artifactId>
<version>1.0.0-beta5</version>
<version>1.0.0-beta6</version>
</parent>

<name>JOTA : Library</name>
Expand Down
2 changes: 1 addition & 1 deletion jota/src/test/java/org/iota/jota/IotaAPITest.java
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,7 @@ public void shouldCheckConsistency() throws ArgumentException {
@Test
@Tag("IntegrationTest")
public void shouldGetTransfers(){
GetTransferResponse gtr = iotaAPI.getTransfers(TEST_SEED3, 2, 0, 0, false);
GetTransferResponse gtr = iotaAPI.getTransfers(TEST_SEED3, 2, 0, 10, false);
assertThat("GetTransfers should return GetTransferResponse object on success", gtr.getTransfers(), IsNull.notNullValue());
assertTrue(gtr.getTransfers().length > 0, "GetTransfers should return more than 0 transfers");
}
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>org.iota</groupId>
<artifactId>jota-parent</artifactId>
<version>1.0.0-beta5</version>
<version>1.0.0-beta6</version>
<packaging>pom</packaging>
<name>JOTA</name>
<description>JOTA library is a simple Java wrapper around IOTA Node's JSON-REST HTTP interface.</description>
Expand Down