Skip to content

Commit

Permalink
new version 1.2.9, updated maven pom
Browse files Browse the repository at this point in the history
de-luxe committed Jul 25, 2017
1 parent a44947b commit 84336a0
Showing 6 changed files with 10 additions and 15 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -26,6 +26,7 @@ The world's first HDD-mined cryptocurrency using the new algorithm, Proof-of-Cap

## Version History

- 2017/07/25 New version release Burst 1.2.9
- 2017/02/19 New version release Burst 1.2.8
- 2016/11/16 New version release Burst 1.2.7
- 2016/07/27 New version release Burst 1.2.6
2 changes: 1 addition & 1 deletion Readme.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Burst ver 1.2.8
Burst ver 1.2.9

Requirements:
Java 8 compatible JVM
6 changes: 0 additions & 6 deletions conf/nxt-default.properties
Original file line number Diff line number Diff line change
@@ -133,12 +133,6 @@ nxt.apiServerHost=127.0.0.1
# Idle timeout for http/json API request connections, milliseconds.
nxt.apiServerIdleTimeout=30000

# Use WebSocket connection if supported by the remote peer
# nxt.useWebSockets=true

# WebSocket connection idle timeout (milliseconds)
# nxt.webSocketIdleTimeout=900000

# Directory with html and javascript files for the new client UI, and admin tools utilizing
# the http/json API.
nxt.apiResourceBase=html/ui
12 changes: 6 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -6,20 +6,20 @@

<groupId>burstcoin</groupId>
<artifactId>burstcoin</artifactId>
<version>1.2.9c</version>
<version>1.2.9</version>

<packaging>jar</packaging>

<properties>

<java.version>1.7</java.version>
<java.version>1.8</java.version>
<jocl.version>0.1.9</jocl.version>
<bcprov-jdk15on.version>1.56</bcprov-jdk15on.version>
<h2.version>1.4.193</h2.version>
<jetty.version>9.2.20.v20161216</jetty.version>
<bcprov-jdk15on.version>1.57</bcprov-jdk15on.version>
<h2.version>1.4.196</h2.version>
<jetty.version>9.2.22.v20170606</jetty.version>
<json-simple.version>1.1.1</json-simple.version>
<javax.servlet-api.version>3.1.0</javax.servlet-api.version>
<slf4j.version>1.7.22</slf4j.version>
<slf4j.version>1.7.25</slf4j.version>

<maven.compiler.source>${java.version}</maven.compiler.source>
<maven.compiler.target>${java.version}</maven.compiler.target>
2 changes: 1 addition & 1 deletion src/java/nxt/BlockchainProcessorImpl.java
Original file line number Diff line number Diff line change
@@ -194,7 +194,7 @@ public void run() {
}
pushBlock(currentBlock);
} catch (BlockNotAcceptedException e) {
Logger.logMessage("Block not accepted", e);
Logger.logDebugMessage("Block not accepted", e);
blacklistClean(currentBlock, e);
return;
}
2 changes: 1 addition & 1 deletion src/java/nxt/Nxt.java
Original file line number Diff line number Diff line change
@@ -18,7 +18,7 @@

public final class Nxt {

public static final String VERSION = "1.2.9c";
public static final String VERSION = "1.2.9";
public static final String APPLICATION = "NRS";

private static volatile Time time = new Time.EpochTime();

0 comments on commit 84336a0

Please sign in to comment.