Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ AC_PREREQ([2.60])
define(_CLIENT_VERSION_MAJOR, 0)
define(_CLIENT_VERSION_MINOR, 14)
define(_CLIENT_VERSION_REVISION, 0)
define(_CLIENT_VERSION_BUILD, 0)
define(_CLIENT_VERSION_BUILD, 1)
define(_CLIENT_VERSION_IS_RELEASE, true)
define(_COPYRIGHT_YEAR, 2019)
define(_COPYRIGHT_HOLDERS,[The %s developers])
Expand Down
2 changes: 1 addition & 1 deletion doc/Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ PROJECT_NAME = "Dash Core"
# could be handy for archiving the generated documentation or if some version
# control system is used.

PROJECT_NUMBER = 0.14.0.0
PROJECT_NUMBER = 0.14.0.1

# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a
Expand Down
8 changes: 4 additions & 4 deletions doc/man/dash-cli.1
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.10.
.TH DASH-CLI "1" "May 2019" "dash-cli v0.14.0.0" "User Commands"
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.4.
.TH DASH-CLI "1" "May 2019" "dash-cli v0.14.0.1" "User Commands"
.SH NAME
dash-cli \- manual page for dash-cli v0.14.0.0
dash-cli \- manual page for dash-cli v0.14.0.1
.SH DESCRIPTION
Dash Core RPC client version v0.14.0.0
Dash Core RPC client version v0.14.0.1
.SS "Usage:"
.TP
dash\-cli [options] <command> [params]
Expand Down
10 changes: 5 additions & 5 deletions doc/man/dash-qt.1
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.10.
.TH DASH-QT "1" "May 2019" "dash-qt v0.14.0.0" "User Commands"
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.4.
.TH DASH-QT "1" "May 2019" "dash-qt v0.14.0.1" "User Commands"
.SH NAME
dash-qt \- manual page for dash-qt v0.14.0.0
dash-qt \- manual page for dash-qt v0.14.0.1
.SH DESCRIPTION
Dash Core version v0.14.0.0 (64\-bit)
Dash Core version v0.14.0.1 (64\-bit)
Usage:
.IP
dash\-qt [command\-line options]
Expand Down Expand Up @@ -76,7 +76,7 @@ Extra transactions to keep in memory for compact block reconstructions
.HP
\fB\-par=\fR<n>
.IP
Set the number of script verification threads (\fB\-2\fR to 16, 0 = auto, <0 =
Set the number of script verification threads (\fB\-4\fR to 16, 0 = auto, <0 =
leave that many cores free, default: 0)
.HP
\fB\-pid=\fR<file>
Expand Down
8 changes: 4 additions & 4 deletions doc/man/dash-tx.1
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.10.
.TH DASH-TX "1" "May 2019" "dash-tx v0.14.0.0" "User Commands"
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.4.
.TH DASH-TX "1" "May 2019" "dash-tx v0.14.0.1" "User Commands"
.SH NAME
dash-tx \- manual page for dash-tx v0.14.0.0
dash-tx \- manual page for dash-tx v0.14.0.1
.SH DESCRIPTION
Dash Core dash\-tx utility version v0.14.0.0
Dash Core dash\-tx utility version v0.14.0.1
.SS "Usage:"
.TP
dash\-tx [options] <hex\-tx> [commands]
Expand Down
10 changes: 5 additions & 5 deletions doc/man/dashd.1
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.10.
.TH DASHD "1" "May 2019" "dashd v0.14.0.0" "User Commands"
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.4.
.TH DASHD "1" "May 2019" "dashd v0.14.0.1" "User Commands"
.SH NAME
dashd \- manual page for dashd v0.14.0.0
dashd \- manual page for dashd v0.14.0.1
.SH DESCRIPTION
Dash Core Daemon version v0.14.0.0
Dash Core Daemon version v0.14.0.1
.SS "Usage:"
.TP
dashd [options]
Expand Down Expand Up @@ -81,7 +81,7 @@ Extra transactions to keep in memory for compact block reconstructions
.HP
\fB\-par=\fR<n>
.IP
Set the number of script verification threads (\fB\-2\fR to 16, 0 = auto, <0 =
Set the number of script verification threads (\fB\-4\fR to 16, 0 = auto, <0 =
leave that many cores free, default: 0)
.HP
\fB\-pid=\fR<file>
Expand Down
683 changes: 24 additions & 659 deletions doc/release-notes.md

Large diffs are not rendered by default.

756 changes: 756 additions & 0 deletions doc/release-notes/dash/release-notes-0.14.0.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/clientversion.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
#define CLIENT_VERSION_MAJOR 0
#define CLIENT_VERSION_MINOR 14
#define CLIENT_VERSION_REVISION 0
#define CLIENT_VERSION_BUILD 0
#define CLIENT_VERSION_BUILD 1

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