From bb4c83dffff1d9a498e672a2fe0c1f4fe8da58d8 Mon Sep 17 00:00:00 2001 From: furszy Date: Sat, 21 Aug 2021 13:44:18 -0300 Subject: [PATCH] Build: Bump version to 5.3.0rc1 --- build-aux/snap/snapcraft.yaml | 2 +- configure.ac | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/build-aux/snap/snapcraft.yaml b/build-aux/snap/snapcraft.yaml index bb504dd195145..24093455e0122 100644 --- a/build-aux/snap/snapcraft.yaml +++ b/build-aux/snap/snapcraft.yaml @@ -2,7 +2,7 @@ # Copyright (c) 2019 The PIVX developers name: pivx-core base: core18 -version: 5.2.99 +version: 5.3.0 summary: PIVX (Private – Instant – Verified – Transaction) description: | PIVX is an MIT licensed, diff --git a/configure.ac b/configure.ac index 85806162b42f3..36a239bc5016f 100644 --- a/configure.ac +++ b/configure.ac @@ -1,11 +1,11 @@ dnl require autoconf 2.60 (AS_ECHO/AS_ECHO_N) AC_PREREQ([2.60]) define(_CLIENT_VERSION_MAJOR, 5) -define(_CLIENT_VERSION_MINOR, 2) -define(_CLIENT_VERSION_REVISION, 99) +define(_CLIENT_VERSION_MINOR, 3) +define(_CLIENT_VERSION_REVISION, 0) define(_CLIENT_VERSION_BUILD, 0) -define(_CLIENT_VERSION_RC, 0) -define(_CLIENT_VERSION_IS_RELEASE, false) +define(_CLIENT_VERSION_RC, 1) +define(_CLIENT_VERSION_IS_RELEASE, true) define(_COPYRIGHT_YEAR, 2021) AC_INIT([PIVX Core],m4_join([.], _CLIENT_VERSION_MAJOR, _CLIENT_VERSION_MINOR, _CLIENT_VERSION_REVISION, m4_if(_CLIENT_VERSION_BUILD, [0], [], _CLIENT_VERSION_BUILD))m4_if(_CLIENT_VERSION_RC, [0], [], [rc]_CLIENT_VERSION_RC),[https://github.com/pivx-project/pivx/issues],[pivx],[https://www.pivx.org/]) AC_CONFIG_SRCDIR([src/validation.cpp])