Skip to content

Commit

Permalink
DACash release v1.0.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
dacash-publisher committed Jun 7, 2018
1 parent 5985f26 commit beda77a
Show file tree
Hide file tree
Showing 10 changed files with 26 additions and 17 deletions.
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, 1)
define(_CLIENT_VERSION_MINOR, 0)
define(_CLIENT_VERSION_REVISION, 0)
define(_CLIENT_VERSION_BUILD, 0)
define(_CLIENT_VERSION_BUILD, 1)
define(_CLIENT_VERSION_IS_RELEASE, true)
define(_COPYRIGHT_YEAR, 2018)
AC_INIT([DACash Core],[_CLIENT_VERSION_MAJOR._CLIENT_VERSION_MINOR._CLIENT_VERSION_REVISION],[https://github.com/dacash-official/dacash/issues],[dacashcore])
Expand Down
4 changes: 2 additions & 2 deletions contrib/gitian-descriptors/gitian-linux.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
name: "dacash-linux-1.0.0.0"
name: "dacash-linux-1.0.0.1"
enable_cache: true
suites:
- "trusty"
Expand All @@ -18,7 +18,7 @@ packages:
- "binutils-gold"
- "ca-certificates"
- "python"
reference_datetime: "2018-06-07 00:00:00"
reference_datetime: "2018-06-07 12:00:00"
remotes:
- "url": "https://github.com/dacash-official/dacash.git"
"dir": "dacash"
Expand Down
2 changes: 1 addition & 1 deletion contrib/gitian-descriptors/gitian-osx-signer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ architectures:
- "amd64"
packages:
- "faketime"
reference_datetime: "2018-06-07 00:00:00"
reference_datetime: "2018-06-07 12:00:00"
remotes:
- "url": "https://github.com/dacash-official/dacash-detached-sigs.git"
"dir": "signature"
Expand Down
4 changes: 2 additions & 2 deletions contrib/gitian-descriptors/gitian-osx.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
name: "dacash-osx-1.0.0.0"
name: "dacash-osx-1.0.0.1"
enable_cache: true
suites:
- "trusty"
Expand All @@ -21,7 +21,7 @@ packages:
- "libbz2-dev"
- "ca-certificates"
- "python"
reference_datetime: "2018-06-07 00:00:00"
reference_datetime: "2018-06-07 12:00:00"
remotes:
- "url": "https://github.com/dacash-official/dacash.git"
"dir": "dacash"
Expand Down
4 changes: 2 additions & 2 deletions contrib/gitian-descriptors/gitian-rpi2.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
name: "dacash-raspberry-1.0.0.0"
name: "dacash-raspberry-1.0.0.1"
enable_cache: true
suites:
- "precise"
Expand All @@ -15,7 +15,7 @@ packages:
- "faketime"
- "bsdmainutils"
- "binutils-gold"
reference_datetime: "2018-06-07 00:00:00"
reference_datetime: "2018-06-07 12:00:00"
remotes:
- "url": "https://github.com/dacash-official/dacash.git"
"dir": "dacash"
Expand Down
2 changes: 1 addition & 1 deletion contrib/gitian-descriptors/gitian-win-signer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ architectures:
packages:
- "libssl-dev"
- "autoconf"
reference_datetime: "2018-06-07 00:00:00"
reference_datetime: "2018-06-07 12:00:00"
remotes:
- "url": "https://github.com/dacash-official/dacash-detached-sigs.git"
"dir": "signature"
Expand Down
4 changes: 2 additions & 2 deletions contrib/gitian-descriptors/gitian-win.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
name: "dacash-win-1.0.0.0"
name: "dacash-win-1.0.0.1"
enable_cache: true
suites:
- "trusty"
Expand All @@ -21,7 +21,7 @@ packages:
- "zip"
- "ca-certificates"
- "python"
reference_datetime: "2018-06-07 00:00:00"
reference_datetime: "2018-06-07 12:00:00"
remotes:
- "url": "https://github.com/dacash-official/dacash.git"
"dir": "dacash"
Expand Down
9 changes: 8 additions & 1 deletion doc/release-notes.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
DACash Core version 1.0.0.1
============================

First public release.



DACash Core version 1.0.0.0
============================

This first release is based on Dash Core version.
First release based on Dash Core version.
10 changes: 6 additions & 4 deletions src/chainparams.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -182,11 +182,13 @@ class CMainParams : public CChainParams {

checkpointData = (CCheckpointData) {
boost::assign::map_list_of
( 0, uint256S("0x00000b8ab13e8a9fa1108a80c066b95e48209616cf142b5f87527516a564a9c2")),
0, // * UNIX timestamp of last checkpoint block
0, // * total number of transactions between genesis and last checkpoint
( 0, uint256S("0x00000b8ab13e8a9fa1108a80c066b95e48209616cf142b5f87527516a564a9c2"))
( 200, uint256S("0x000008eb493cd56d9e90ba93f61edc74450183c6db03ee3a3e74469ff044a3e7"))
,
1528381778, // * UNIX timestamp of last checkpoint block
202, // * total number of transactions between genesis and last checkpoint
// (the tx=... number in the SetBestChain debug.log lines)
5000 // * estimated number of transactions per day after checkpoint
600 // * estimated number of transactions per day after checkpoint
};
}
};
Expand Down
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 1
#define CLIENT_VERSION_MINOR 0
#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

0 comments on commit beda77a

Please sign in to comment.