diff --git a/Dockerfile b/Dockerfile index 128499c8d4..063e1c2926 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ RUN mvn clean package FROM openjdk:jre-slim WORKDIR /iri -COPY --from=builder /iri/target/iri-1.4.1.4.jar iri.jar +COPY --from=builder /iri/target/iri-1.4.1.6.jar iri.jar COPY logback.xml /iri VOLUME /iri diff --git a/changelog.txt b/changelog.txt index 8f60433fd2..4e371d6bec 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,9 @@ +1.4.1.6 + - fixes stale tcp connections + - fixes solid milestone getting stuck (regression) + - enables checking balance based on tips + - enables API Rate limit for new transacitons + 1.4.1.4 - Improved memory allocation - add checkConsistency API call for transaction promotion diff --git a/dependency-reduced-pom.xml b/dependency-reduced-pom.xml index b6bbd820fa..5f28f78f30 100644 --- a/dependency-reduced-pom.xml +++ b/dependency-reduced-pom.xml @@ -4,7 +4,7 @@ com.iota iri IRI - 1.4.1.4 + 1.4.1.6 IOTA Reference Implementation scm:git:git://github.com/iotaledger/iri.git diff --git a/pom.xml b/pom.xml index a3e7dadb67..7f1dba8e65 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ com.iota iri - 1.4.1.4 + 1.4.1.6 IRI IOTA Reference Implementation diff --git a/src/main/java/com/iota/iri/IRI.java b/src/main/java/com/iota/iri/IRI.java index c9ed271d30..0a5c0cc075 100644 --- a/src/main/java/com/iota/iri/IRI.java +++ b/src/main/java/com/iota/iri/IRI.java @@ -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.1.4"; + public static final String VERSION = "1.4.1.6"; public static Iota iota; public static API api; public static IXI ixi;