Skip to content

Commit

Permalink
v2.1.4 release (#55)
Browse files Browse the repository at this point in the history
Update fabric-sdk-java dependency version

Signed-off-by: Mark S. Lewis <[email protected]>
  • Loading branch information
bestbeforetoday authored Jul 6, 2020
1 parent 69d6d6c commit 811dff6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

<groupId>org.hyperledger.fabric</groupId>
<artifactId>fabric-gateway-java</artifactId>
<version>2.1.3</version>
<version>2.1.4</version>
<packaging>jar</packaging>

<name>fabric-gateway-java</name>
Expand Down Expand Up @@ -86,7 +86,7 @@
<dependency>
<groupId>org.hyperledger.fabric-sdk-java</groupId>
<artifactId>fabric-sdk-java</artifactId>
<version>2.1.3</version>
<version>[2.1.4,2.2.0)</version>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ public Builder networkConfig(final InputStream config) throws IOException {
bufferedStream.reset();
ccp = NetworkConfig.fromYamlStream(bufferedStream);
}
} catch (InvalidArgumentException | NetworkConfigurationException e) {
} catch (NetworkConfigurationException e) {
throw new IOException(e);
}
return this;
Expand Down

0 comments on commit 811dff6

Please sign in to comment.