From 74c3668246c290ed90bbaf98883b112af7844368 Mon Sep 17 00:00:00 2001 From: Brord van Wierst Date: Thu, 4 Jul 2019 15:55:51 +0200 Subject: [PATCH 1/3] udpated versiosn to beta6 --- README.md | 5 +++-- jota/pom.xml | 2 +- pom.xml | 2 +- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 6ec599bb..eafc6636 100644 --- a/README.md +++ b/README.md @@ -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' } ``` @@ -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 `` tag to either a release number or the first 10 characters of a Git commit hash: -`e4fd314b3e` or `1.0.0-beta5` +`e4fd314b3e` or `1.0.0-beta6` **Note:** Find the latest version on the [Jitpack](https://jitpack.io/#iotaledger/iota-java) page. @@ -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) diff --git a/jota/pom.xml b/jota/pom.xml index 3f5f02d1..79bd6f5a 100644 --- a/jota/pom.xml +++ b/jota/pom.xml @@ -5,7 +5,7 @@ org.iota jota-parent - 1.0.0-beta5 + 1.0.0-beta6 JOTA : Library diff --git a/pom.xml b/pom.xml index a7e3739a..106e58f6 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ org.iota jota-parent - 1.0.0-beta5 + 1.0.0-beta6 pom JOTA JOTA library is a simple Java wrapper around IOTA Node's JSON-REST HTTP interface. From efdc784d8a9ef44fd1c32de9c7c32453b6cf817d Mon Sep 17 00:00:00 2001 From: Brord van Wierst Date: Thu, 4 Jul 2019 17:12:22 +0200 Subject: [PATCH 2/3] Changed test for new getAddress usage --- jota/src/test/java/org/iota/jota/IotaAPITest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jota/src/test/java/org/iota/jota/IotaAPITest.java b/jota/src/test/java/org/iota/jota/IotaAPITest.java index 2deadac7..ac1f2bb9 100644 --- a/jota/src/test/java/org/iota/jota/IotaAPITest.java +++ b/jota/src/test/java/org/iota/jota/IotaAPITest.java @@ -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"); } From f2438e6def2680aac994524933a6599a4cc1a9b8 Mon Sep 17 00:00:00 2001 From: Brord van Wierst Date: Thu, 4 Jul 2019 17:21:41 +0200 Subject: [PATCH 3/3] Changed example commit hash for jitpack --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index eafc6636..41aa127f 100644 --- a/README.md +++ b/README.md @@ -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 `` tag to either a release number or the first 10 characters of a Git commit hash: -`e4fd314b3e` or `1.0.0-beta6` +`efdc784d8a9ef` or `1.0.0-beta6` **Note:** Find the latest version on the [Jitpack](https://jitpack.io/#iotaledger/iota-java) page.