Skip to content
This repository has been archived by the owner on Aug 23, 2020. It is now read-only.

Commit

Permalink
v1.4.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
th0br0 authored and paulhandy committed Feb 24, 2018
1 parent 7e72993 commit fee959c
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ RUN mvn clean package

FROM openjdk:jre-slim
WORKDIR /iri
COPY --from=builder /iri/target/iri-1.4.2.1.jar iri.jar
COPY --from=builder /iri/target/iri-1.4.2.2.jar iri.jar
COPY logback.xml /iri
VOLUME /iri

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ This is the main branch of the main IRI repository, as this is a IOTA reference

It allows to connect easily using java directly to a local or a remote [[IOTA node]](http://learn.iota.org/).

* **Latest release:** 1.4.2.1 Release
* **Latest release:** 1.4.2.2 Release
* **License:** GPLv3

# How to get started
Expand Down
5 changes: 5 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
1.4.2.2
- Fix locking issue (#534)
- Fix internal snapshot consistency checks
- Update jeromq dependency to 0.4.3 (#544)

1.4.2.1
- Add wasAddressSpentFrom API call
- Bugfix in getInclusionStates
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>com.iota</groupId>
<artifactId>iri</artifactId>
<version>1.4.2.1</version>
<version>1.4.2.2</version>

<name>IRI</name>
<description>IOTA Reference Implementation</description>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/iota/iri/IRI.java
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public class IRI {

public static final String MAINNET_NAME = "IRI";
public static final String TESTNET_NAME = "IRI Testnet";
public static final String VERSION = "1.4.2.1";
public static final String VERSION = "1.4.2.2";
public static Iota iota;
public static API api;
public static IXI ixi;
Expand Down

0 comments on commit fee959c

Please sign in to comment.