Skip to content

Commit a3036d3

Browse files
committed
v1.1.5
+ update displayed copyrights
1 parent 5adbc3e commit a3036d3

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
cmake_minimum_required(VERSION 3.10)
55
project(devault
6-
VERSION 1.1.4
6+
VERSION 1.1.5
77
# DESCRIPTION "DeVault is a full node implementation of the DeVault protocol."
88
# HOMEPAGE_URL "https://www.devault.cc"
99
)
@@ -13,7 +13,7 @@ enable_testing()
1313
# Package information
1414
set(PACKAGE_NAME "DeVault Core")
1515
# Copyright
16-
set(COPYRIGHT_YEAR 2019)
16+
set(COPYRIGHT_YEAR 2019 - 2020)
1717

1818
# Add path for custom modules
1919
set(CMAKE_MODULE_PATH

configure.ac

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ dnl require autoconf 2.60 (AS_ECHO/AS_ECHO_N)
22
AC_PREREQ([2.60])
33
define(_CLIENT_VERSION_MAJOR, 1)
44
define(_CLIENT_VERSION_MINOR, 1)
5-
define(_CLIENT_VERSION_REVISION, 4)
5+
define(_CLIENT_VERSION_REVISION, 5)
66
define(_CLIENT_VERSION_BUILD, 0)
77
define(_CLIENT_VERSION_IS_RELEASE, true)
8-
define(_COPYRIGHT_YEAR, 2019)
8+
define(_COPYRIGHT_YEAR, 2020)
99
define(_COPYRIGHT_HOLDERS,[The %s developers])
1010
define(_COPYRIGHT_HOLDERS_SUBSTITUTION,[[Bitcoin]])
1111
AC_INIT([DeVault Core],[_CLIENT_VERSION_MAJOR._CLIENT_VERSION_MINOR._CLIENT_VERSION_REVISION],[https://github.com/devaultcrypto/devault/issues],[devault],[https://devault.cc/])

src/clientversion.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
//! Copyright string used in Windows .rc files
2020
#define COPYRIGHT_STR \
21-
"2009-" STRINGIZE(COPYRIGHT_YEAR) " The DeVault Developers"
21+
"2019-" STRINGIZE(COPYRIGHT_YEAR) " The DeVault Developers"
2222

2323
/**
2424
* bitcoind-res.rc includes this file, but it cannot cope with real c++ code.

src/init.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1037,7 +1037,7 @@ std::string LicenseInfo() {
10371037
strprintf(_("Copyright (C) %i-%i"), 2009, COPYRIGHT_YEAR) +
10381038
" ") +
10391039
"\n" + "\n" +
1040-
strprintf(_("Copyright (C) 2019") +
1040+
strprintf(_("Copyright (C) 2019-2020") +
10411041
" The DeVault Developers ") +
10421042
"\n" + "\n" +
10431043
strprintf(_("Please contribute if you find DeVault-Core useful. "

0 commit comments

Comments
 (0)