Skip to content

Commit

Permalink
Version update (#20)
Browse files Browse the repository at this point in the history
* Updating version

* Correcting command for obtaining the number of cores from Linux and Windows systems
  • Loading branch information
Asherda authored Oct 3, 2018
1 parent a08727c commit 419542c
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .gitlab-ci.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
stages:
- build
variables:
VERSION: 0.6.3
VERSION: 0.6.3a
POST_MESSAGE: "Pipeline Trigger: ${CI_PIPELINE_SOURCE}\n
Branch: ${CI_COMMIT_REF_NAME}\n
Commit: ${CI_COMMIT_SHA}\n
Expand Down
4 changes: 2 additions & 2 deletions doc/Linux/Readme.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VerusCoin nheqminer v0.6.3-beta
VerusCoin nheqminer v0.6.3a-beta
Using VerusHash v0.3.13-beta

This software needs to be run on a terminal.
Expand Down Expand Up @@ -50,4 +50,4 @@ Example to mine on your CPU with your own VRSC address and worker1 on Stratum As

Example to mine on your CPU with your own VRSC address and worker1 on Stratum EU server, using all threads:

./nheqminer -v -l veruscoin.miningpools.cloud:2052 -u YOUR_VRSC_ADDRESS_HERE.worker1 -t $(sysctl -n hw.physicalcpu)
./nheqminer -v -l veruscoin.miningpools.cloud:2052 -u YOUR_VRSC_ADDRESS_HERE.worker1 -t $(nproc)
2 changes: 1 addition & 1 deletion doc/Mac/Readme.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VerusCoin nheqminer v0.6.3-beta
VerusCoin nheqminer v0.6.3a-beta
Using VerusHash v0.3.13-beta

This software needs to be run on a terminal. To find it, open the Applications folder, then open the Utilities folder and finally open the Terminal application. The terminal can also be found using spotlight and searching for “terminal”.
Expand Down
4 changes: 2 additions & 2 deletions doc/Windows/Readme.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VerusCoin nheqminer v0.6.3-beta
VerusCoin nheqminer v0.6.3a-beta
Using VerusHash v0.3.13-beta

This software needs to be run on a terminal. From the start menu, type cmd and press enter to open a command prompt.
Expand Down Expand Up @@ -50,4 +50,4 @@ Example to mine on your CPU with your own VRSC address and worker1 on Stratum As

Example to mine on your CPU with your own VRSC address and worker1 on Stratum EU server, using all threads:

nheqminer -v -l veruscoin.miningpools.cloud:2052 -u YOUR_VRSC_ADDRESS_HERE.worker1 -t $(sysctl -n hw.physicalcpu)
nheqminer -v -l veruscoin.miningpools.cloud:2052 -u YOUR_VRSC_ADDRESS_HERE.worker1 -t %NUMBER_OF_PROCESSORS%
2 changes: 1 addition & 1 deletion nheqminer/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ static const int BIP0031_VERSION = 60000;
//! "mempool" command, enhanced "getdata" behavior starts with this version
static const int MEMPOOL_GD_VERSION = 60002;

#define STANDALONE_MINER_VERSION "0.6.3"
#define STANDALONE_MINER_VERSION "0.6.3a"

// uncomment to use with ZCash address
//#define ZCASH_POOL
Expand Down

0 comments on commit 419542c

Please sign in to comment.