Skip to content

Commit 226c2aa

Browse files
committed
Release 0.12.14 "Faythe"
1 parent 4ecc327 commit 226c2aa

File tree

7 files changed

+29
-12
lines changed

7 files changed

+29
-12
lines changed

README.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,18 +7,17 @@ https://documentchain.org/
77
What is DMS?
88
---------------------
99

10-
The main task of Documentchain is to store document information for a tamper-proof
11-
document revision. DMS is the project-own coin used to pay the storage fees.
10+
The main task of Documentchain is to store document information for a tamper-proof document revision. DMS is the project-own coin used to pay the storage fees.
1211

13-
DMS is an experimental digital currency forked from Dash
14-
DMS Core is the name of the open source software which enables the use of this currency.
12+
DMS is an experimental digital currency forked from Dash. DMS Core is the name of the open source software which enables the use of this currency.
1513

1614
Help and Support
1715
---------------------
1816
* Wallet installation https://documentchain.org/support/wallet/
1917
* User interface https://dms.cash/support/wallet/
2018
* Document revision https://documentchain.org/support/revision/
2119
* Masternode setup https://documentchain.org/support/masternodes/
20+
* Block explorer (coin and documents) https://documentchain.org/explorer/
2221

2322
License
2423
---------------------

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ dnl require autoconf 2.60 (AS_ECHO/AS_ECHO_N)
22
AC_PREREQ([2.60])
33
define(_CLIENT_VERSION_MAJOR, 0)
44
define(_CLIENT_VERSION_MINOR, 12)
5-
define(_CLIENT_VERSION_REVISION, 13)
5+
define(_CLIENT_VERSION_REVISION, 14)
66
define(_CLIENT_VERSION_BUILD, 0)
77
define(_CLIENT_VERSION_IS_RELEASE, true)
88
define(_COPYRIGHT_YEAR, 2019)

doc/Doxyfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ PROJECT_NAME = "DMS Core"
4141
# could be handy for archiving the generated documentation or if some version
4242
# control system is used.
4343

44-
PROJECT_NUMBER = 0.12.13.0
44+
PROJECT_NUMBER = 0.12.14.0
4545

4646
# Using the PROJECT_BRIEF tag one can provide an optional one line description
4747
# for a project that appears at the top of each page and should give viewer a
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
DMS Core version 0.12.14.0 "Erin", 28 Nov 2019
2+
======================================
3+
4+
Release is available from:
5+
6+
<https://github.com/Krekeler/documentchain/releases/tag/v0.12.14.0>
7+
8+
## Notable changes
9+
10+
* Sync issue fix (PoW calculation)
11+
* New logo and icons
12+
* Weblinks
13+
* Mining hashrate info on main form
14+
* Public testnet
15+
16+
Please report bugs using the issue tracker at github:
17+
18+
<https://github.com/Krekeler/documentchain/issues>

doc/release-process.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ Before every minor and major release:
99
* Update version in sources (see below)
1010
* Write release notes (see below)
1111
* Update `src/chainparams.cpp`
12-
- nMinimumChainWork with information from the getblockchaininfo rpc.
1312
- Add checkpointData
1413
- Set defaultAssumeValid to latest checkpoint (with information from the getblockhash rpc).
1514
The selected value must not be orphaned so it may be useful to set the value two blocks back from the tip.
1615
Testnet should be set some tens of thousands back from the tip due to reorgs there.
1716
This update should be reviewed with a reindex-chainstate with assumevalid=0 to catch any defect that causes rejection of blocks in the past history.
17+
- Set nMinimumChainWork to "chainwork" from block "defaultAssumeValid", rpc "getblock (hash)"
1818
* Update hardcoded [seeds](/contrib/seeds/README.md) with stable Masternodes.
1919
* Update [`BLOCK_CHAIN_SIZE`](/src/qt/intro.cpp) to the current size plus some overhead.
2020

src/chainparams.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -176,8 +176,8 @@ class CMainParams : public CChainParams {
176176
consensus.vDeployments[Consensus::DEPLOYMENT_BIP147].nWindowSize = 4032;
177177
consensus.vDeployments[Consensus::DEPLOYMENT_BIP147].nThreshold = 3226; // 80% of 4032
178178

179-
// The best chain should have at least this much work. Backport "assumed valid blocks" feature from Bitcoin 0.13 https://github.com/dashpay/dash/commit/ccee103a0e6f568f545c4e6b06f6a3e565cdbcb1#diff-64cbe1ad5465e13bc59ee8bb6f3de2e7
180-
consensus.nMinimumChainWork = uint256S("0x00000000000000000000000000000000000000000000000000000045e8fe4cec");
179+
// The best chain should have at least this much work.
180+
consensus.nMinimumChainWork = uint256S("0x00000000000000000000000000000000000000000000000000000045eb877ed3"); // 103260
181181

182182
// By default assume that the signatures in ancestors of this block are valid.
183183
consensus.defaultAssumeValid = uint256S("0x0000000c15de23b822043f7fd7ff4ace4761ec455da710442ef6c1e5035a14d1"); // 103260

src/clientversion.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
//! These need to be macros, as clientversion.cpp's and dms*-res.rc's voodoo requires it
1919
#define CLIENT_VERSION_MAJOR 0
2020
#define CLIENT_VERSION_MINOR 12
21-
#define CLIENT_VERSION_REVISION 13
21+
#define CLIENT_VERSION_REVISION 14
2222
#define CLIENT_VERSION_BUILD 0
2323

2424
//! Set to true for release, false for prerelease or test build
@@ -32,8 +32,8 @@
3232

3333
#endif //HAVE_CONFIG_H
3434

35-
// Release code names: Alice 0.12.9, Bob 0.12.10, Carol 0.12.11, Dave 0.12.12, Erin 0.12.13
36-
#define RELEASE_CODE_NAME "Erin"
35+
// Release code names: Alice 0.12.9, Bob 0.12.10, Carol 0.12.11, Dave 0.12.12, Erin 0.12.13, Faythe 0.12.14
36+
#define RELEASE_CODE_NAME "Faythe"
3737

3838
/**
3939
* Converts the parameter X to a string after macro replacement on X has been performed.

0 commit comments

Comments
 (0)