Skip to content

Commit 845af59

Browse files
committed
bump version
1 parent c874ab5 commit 845af59

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<modelVersion>4.0.0</modelVersion>
55
<groupId>tk.netindev.drill</groupId>
66
<artifactId>drill</artifactId>
7-
<version>0.0.4-SNAPSHOT</version>
7+
<version>0.1.0-SNAPSHOT</version>
88
<dependencies>
99
<dependency>
1010
<groupId>commons-cli</groupId>

src/main/java/tk/netindev/drill/Drill.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public class Drill {
2020

2121
private static final Logger logger = LoggerFactory
2222
.getLogger(Drill.class.getName());
23-
public static final double PACKAGE_VERSION = 0.04D;
23+
public static final double PACKAGE_VERSION = 0.10D;
2424

2525
public static void main(String[] args) {
2626
if (args.length == 0) {

src/main/java/tk/netindev/drill/miner/Worker.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public Worker(Miner miner, Job job, int nonce) {
2222
@Override
2323
public void run() {
2424
int nonce = this.nonce;
25-
byte[] hash = new byte[32];
25+
final byte[] hash = new byte[32];
2626
final byte[] array = new byte[4];
2727
final byte[] blob = this.job.getBlob();
2828
final int target = this.job.getTarget();

0 commit comments

Comments
 (0)