Skip to content

Commit

Permalink
Build version; Folder naming fix
Browse files Browse the repository at this point in the history
  • Loading branch information
stonecrypto committed Feb 6, 2018
1 parent 2abf807 commit 93a8345
Show file tree
Hide file tree
Showing 7 changed files with 23 additions and 23 deletions.
20 changes: 10 additions & 10 deletions configure
Original file line number Diff line number Diff line change
Expand Up @@ -25760,34 +25760,34 @@ fi



$as_echo "#define CLIENT_VERSION_MAJOR 0" >>confdefs.h
$as_echo "#define CLIENT_VERSION_MAJOR 1" >>confdefs.h


$as_echo "#define CLIENT_VERSION_MINOR 12" >>confdefs.h
$as_echo "#define CLIENT_VERSION_MINOR 0" >>confdefs.h


$as_echo "#define CLIENT_VERSION_REVISION 1" >>confdefs.h
$as_echo "#define CLIENT_VERSION_REVISION 0" >>confdefs.h


$as_echo "#define CLIENT_VERSION_BUILD 50" >>confdefs.h
$as_echo "#define CLIENT_VERSION_BUILD 2" >>confdefs.h


$as_echo "#define CLIENT_VERSION_IS_RELEASE true" >>confdefs.h


$as_echo "#define COPYRIGHT_YEAR 2017" >>confdefs.h
$as_echo "#define COPYRIGHT_YEAR 2018" >>confdefs.h

CLIENT_VERSION_MAJOR=0
CLIENT_VERSION_MAJOR=1

CLIENT_VERSION_MINOR=12
CLIENT_VERSION_MINOR=0

CLIENT_VERSION_REVISION=1
CLIENT_VERSION_REVISION=0

CLIENT_VERSION_BUILD=50
CLIENT_VERSION_BUILD=2

CLIENT_VERSION_IS_RELEASE=true

COPYRIGHT_YEAR=2017
COPYRIGHT_YEAR=2018



Expand Down
10 changes: 5 additions & 5 deletions configure.ac
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
dnl require autoconf 2.60 (AS_ECHO/AS_ECHO_N)
AC_PREREQ([2.60])
define(_CLIENT_VERSION_MAJOR, 0)
define(_CLIENT_VERSION_MINOR, 12)
define(_CLIENT_VERSION_REVISION, 1)
define(_CLIENT_VERSION_BUILD, 50)
define(_CLIENT_VERSION_MAJOR, 1)
define(_CLIENT_VERSION_MINOR, 0)
define(_CLIENT_VERSION_REVISION, 0)
define(_CLIENT_VERSION_BUILD, 2)
define(_CLIENT_VERSION_IS_RELEASE, true)
define(_COPYRIGHT_YEAR, 2017)
define(_COPYRIGHT_YEAR, 2018)
AC_INIT([StoneCoin Core],[_CLIENT_VERSION_MAJOR._CLIENT_VERSION_MINOR._CLIENT_VERSION_REVISION],[https://github.com/stonecrypto/stonecoin/issues],[stonecrypto])
AC_CONFIG_SRCDIR([src/main.cpp])
AC_CONFIG_HEADERS([src/config/stonecoin-config.h])
Expand Down
2 changes: 1 addition & 1 deletion contrib/gitian-descriptors/gitian-linux.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
name: "stonecoin-linux-0.12"
name: "stonecoin-linux-1.0"
enable_cache: true
suites:
- "trusty"
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,11 +1,11 @@
---
name: "stonecoin-osx-0.12"
name: "stonecoin-osx-1.0"
enable_cache: true
suites:
- "trusty"
architectures:
- "amd64"
packages:
packages:
- "curl"
- "g++"
- "git-core"
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: "stonecoin-raspberry-0.12"
name: "stonecoin-raspberry-1.0"
enable_cache: true
suites:
- "precise"
Expand Down Expand Up @@ -27,7 +27,7 @@ script: |
CONFIGFLAGS="--enable-upnp-default --enable-glibc-back-compat"
FAKETIME_HOST_PROGS=""
FAKETIME_PROGS="date ar ranlib nm strip"
tar --warning=no-timestamp -xzf raspberrypi-tools.tar.gz
export TOOLCHAIN_BIN=$(pwd)/raspberrypi-tools/arm-bcm2708/gcc-linaro-arm-linux-gnueabihf-raspbian-x64/bin
export PATH=$PATH:$TOOLCHAIN_BIN
Expand Down
2 changes: 1 addition & 1 deletion contrib/gitian-descriptors/gitian-win.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
name: "stonecoin-win-0.12"
name: "stonecoin-win-1.0"
enable_cache: true
suites:
- "trusty"
Expand Down
4 changes: 2 additions & 2 deletions 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 1
#define CLIENT_VERSION_BUILD 2

//! Set to true for release, false for prerelease or test build
#define CLIENT_VERSION_IS_RELEASE true
Expand All @@ -26,7 +26,7 @@
* Copyright year (2009-this)
* Todo: update this when changing our copyright comments in the source
*/
#define COPYRIGHT_YEAR 2017
#define COPYRIGHT_YEAR 2018

#endif //HAVE_CONFIG_H

Expand Down

0 comments on commit 93a8345

Please sign in to comment.