Skip to content

Commit 788d42d

Browse files
authored
Bump version to 0.14.0.3 and copy release notes (#3053)
1 parent 28a219f commit 788d42d

File tree

5 files changed

+137
-4
lines changed

5 files changed

+137
-4
lines changed

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ AC_PREREQ([2.60])
33
define(_CLIENT_VERSION_MAJOR, 0)
44
define(_CLIENT_VERSION_MINOR, 14)
55
define(_CLIENT_VERSION_REVISION, 0)
6-
define(_CLIENT_VERSION_BUILD, 2)
6+
define(_CLIENT_VERSION_BUILD, 3)
77
define(_CLIENT_VERSION_IS_RELEASE, true)
88
define(_COPYRIGHT_YEAR, 2019)
99
define(_COPYRIGHT_HOLDERS,[The %s developers])

doc/Doxyfile

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

44-
PROJECT_NUMBER = 0.14.0.2
44+
PROJECT_NUMBER = 0.14.0.3
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

doc/release-notes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Dash Core version 0.14.0.2
1+
Dash Core version 0.14.0.3
22
==========================
33

44
Release is now available from:
Lines changed: 133 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,133 @@
1+
Dash Core version 0.14.0.2
2+
==========================
3+
4+
Release is now available from:
5+
6+
<https://www.dash.org/downloads/#wallets>
7+
8+
This is a new minor version release, bringing various bugfixes.
9+
10+
Please report bugs using the issue tracker at github:
11+
12+
<https://github.com/dashpay/dash/issues>
13+
14+
15+
Upgrading and downgrading
16+
=========================
17+
18+
How to Upgrade
19+
--------------
20+
21+
If you are running an older version, shut it down. Wait until it has completely
22+
shut down (which might take a few minutes for older versions), then run the
23+
installer (on Windows) or just copy over /Applications/Dash-Qt (on Mac) or
24+
dashd/dash-qt (on Linux). If you upgrade after DIP0003 activation and you were
25+
using version < 0.13 you will have to reindex (start with -reindex-chainstate
26+
or -reindex) to make sure your wallet has all the new data synced. Upgrading from
27+
version 0.13 should not require any additional actions.
28+
29+
Downgrade warning
30+
-----------------
31+
32+
### Downgrade to a version < 0.14.0.0
33+
34+
Downgrading to a version smaller than 0.14 is not supported anymore as DIP8 has
35+
activated on mainnet and testnet.
36+
37+
### Downgrade to versions 0.14.0.0 - 0.14.0.1
38+
39+
Downgrading to older 0.14 releases is fully supported but is not
40+
recommended unless you have some serious issues with version 0.14.0.2.
41+
42+
Notable changes
43+
===============
44+
45+
Performance improvements
46+
------------------------
47+
Slow startup times were observed in older versions. This was due to sub-optimal handling of old
48+
deterministic masternode lists which caused the loading of too many lists into memory. This should be
49+
fixed now.
50+
51+
Fixed excessive memory use
52+
--------------------------
53+
Multiple issues were found which caused excessive use of memory in some situations, especially when
54+
a full reindex was performed, causing the node to crash even when enough RAM was available. This should
55+
be fixed now.
56+
57+
Fixed out-of-sync masternode list UI
58+
------------------------------------
59+
The masternode tab, which shows the masternode list, was not always up-to-date as it missed some internal
60+
updates. This should be fixed now.
61+
62+
0.14.0.2 Change log
63+
===================
64+
65+
See detailed [set of changes](https://github.com/dashpay/dash/compare/v0.14.0.1...dashpay:v0.14.0.2).
66+
67+
- [`d2ff63e8d`](https://github.com/dashpay/dash/commit/d2ff63e8d) Use std::unique_ptr for mnList in CSimplifiedMNList (#3014)
68+
- [`321bbf5af`](https://github.com/dashpay/dash/commit/321bbf5af) Fix excessive memory use when flushing chainstate and EvoDB (#3008)
69+
- [`0410259dd`](https://github.com/dashpay/dash/commit/0410259dd) Fix 2 common Travis failures which happen when Travis has network issues (#3003)
70+
- [`8d763c144`](https://github.com/dashpay/dash/commit/8d763c144) Only load signingActiveQuorumCount + 1 quorums into cache (#3002)
71+
- [`2dc1b06ec`](https://github.com/dashpay/dash/commit/2dc1b06ec) Remove skipped denom from the list on tx commit (#2997)
72+
- [`dff2c851d`](https://github.com/dashpay/dash/commit/dff2c851d) Update manpages for 0.14.0.2 (#2999)
73+
- [`46c4f5844`](https://github.com/dashpay/dash/commit/46c4f5844) Use Travis stages instead of custom timeouts (#2948)
74+
- [`49c37b82a`](https://github.com/dashpay/dash/commit/49c37b82a) Back off for 1m when connecting to quorum masternodes (#2975)
75+
- [`c1f756fd9`](https://github.com/dashpay/dash/commit/c1f756fd9) Multiple speed optimizations for deterministic MN list handling (#2972)
76+
- [`11699f540`](https://github.com/dashpay/dash/commit/11699f540) Process/keep messages/connections from PoSe-banned MNs (#2967)
77+
- [`c5415e746`](https://github.com/dashpay/dash/commit/c5415e746) Fix UI masternode list (#2966)
78+
- [`fb6f0e04d`](https://github.com/dashpay/dash/commit/fb6f0e04d) Bump version to 0.14.0.2 and copy release notes (#2991)
79+
80+
Credits
81+
=======
82+
83+
Thanks to everyone who directly contributed to this release:
84+
85+
- Alexander Block (codablock)
86+
- UdjinM6
87+
88+
As well as everyone that submitted issues and reviewed pull requests.
89+
90+
Older releases
91+
==============
92+
93+
Dash was previously known as Darkcoin.
94+
95+
Darkcoin tree 0.8.x was a fork of Litecoin tree 0.8, original name was XCoin
96+
which was first released on Jan/18/2014.
97+
98+
Darkcoin tree 0.9.x was the open source implementation of masternodes based on
99+
the 0.8.x tree and was first released on Mar/13/2014.
100+
101+
Darkcoin tree 0.10.x used to be the closed source implementation of Darksend
102+
which was released open source on Sep/25/2014.
103+
104+
Dash Core tree 0.11.x was a fork of Bitcoin Core tree 0.9,
105+
Darkcoin was rebranded to Dash.
106+
107+
Dash Core tree 0.12.0.x was a fork of Bitcoin Core tree 0.10.
108+
109+
Dash Core tree 0.12.1.x was a fork of Bitcoin Core tree 0.12.
110+
111+
These release are considered obsolete. Old release notes can be found here:
112+
113+
- [v0.14.0.1](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-0.14.0.1.md) released May/31/2019
114+
- [v0.14.0](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-0.14.0.md) released May/22/2019
115+
- [v0.13.3](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-0.13.3.md) released Apr/04/2019
116+
- [v0.13.2](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-0.13.2.md) released Mar/15/2019
117+
- [v0.13.1](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-0.13.1.md) released Feb/9/2019
118+
- [v0.13.0](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-0.13.0.md) released Jan/14/2019
119+
- [v0.12.3.4](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-0.12.3.4.md) released Dec/14/2018
120+
- [v0.12.3.3](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-0.12.3.3.md) released Sep/19/2018
121+
- [v0.12.3.2](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-0.12.3.2.md) released Jul/09/2018
122+
- [v0.12.3.1](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-0.12.3.1.md) released Jul/03/2018
123+
- [v0.12.2.3](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-0.12.2.3.md) released Jan/12/2018
124+
- [v0.12.2.2](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-0.12.2.2.md) released Dec/17/2017
125+
- [v0.12.2](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-0.12.2.md) released Nov/08/2017
126+
- [v0.12.1](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-0.12.1.md) released Feb/06/2017
127+
- [v0.12.0](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-0.12.0.md) released Aug/15/2015
128+
- [v0.11.2](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-0.11.2.md) released Mar/04/2015
129+
- [v0.11.1](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-0.11.1.md) released Feb/10/2015
130+
- [v0.11.0](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-0.11.0.md) released Jan/15/2015
131+
- [v0.10.x](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-0.10.0.md) released Sep/25/2014
132+
- [v0.9.x](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-0.9.0.md) released Mar/13/2014
133+

src/clientversion.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
#define CLIENT_VERSION_MAJOR 0
1818
#define CLIENT_VERSION_MINOR 14
1919
#define CLIENT_VERSION_REVISION 0
20-
#define CLIENT_VERSION_BUILD 2
20+
#define CLIENT_VERSION_BUILD 3
2121

2222
//! Set to true for release, false for prerelease or test build
2323
#define CLIENT_VERSION_IS_RELEASE true

0 commit comments

Comments
 (0)