Skip to content

Commit 282f798

Browse files
committed
Update dependencies to support identity hash
1 parent a34599a commit 282f798

File tree

5 files changed

+4
-4
lines changed

5 files changed

+4
-4
lines changed

lib/cid.jar

1 Byte
Binary file not shown.

lib/multibase.jar

1.91 KB
Binary file not shown.

lib/multihash.jar

1.53 KB
Binary file not shown.

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,21 +66,21 @@
6666
<dependency>
6767
<groupId>com.github.multiformats</groupId>
6868
<artifactId>java-multihash</artifactId>
69-
<version>v1.1.1</version>
69+
<version>v1.2.1</version>
7070
<scope>system</scope>
7171
<systemPath>${project.basedir}/lib/multihash.jar</systemPath>
7272
</dependency>
7373
<dependency>
7474
<groupId>com.github.multiformats</groupId>
7575
<artifactId>java-multibase</artifactId>
76-
<version>v1.1.0</version>
76+
<version>v1.0.1</version>
7777
<scope>system</scope>
7878
<systemPath>${project.basedir}/lib/multibase.jar</systemPath>
7979
</dependency>
8080
<dependency>
8181
<groupId>com.github.ipld</groupId>
8282
<artifactId>java-cid</artifactId>
83-
<version>v1.1.0</version>
83+
<version>v1.1.1</version>
8484
<scope>system</scope>
8585
<systemPath>${project.basedir}/lib/cid.jar</systemPath>
8686
</dependency>

src/test/java/io/ipfs/api/APITest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ public void pinUpdate() throws IOException {
265265
public void rawLeafNodePinUpdate() throws IOException {
266266
MerkleNode child1 = ipfs.block.put("some data".getBytes(), Optional.of("raw"));
267267
Multihash hashChild1 = child1.hash;
268-
System.out.println("child1: " + hashChild1.type);
268+
System.out.println("child1: " + hashChild1);
269269

270270
CborObject.CborMerkleLink root1 = new CborObject.CborMerkleLink(hashChild1);
271271
MerkleNode root1Res = ipfs.block.put(Collections.singletonList(root1.toByteArray()), Optional.of("cbor")).get(0);

0 commit comments

Comments
 (0)