NOTE: Some previously experimental features in the client software are

now important to have for the 7.0 release.  The existing 7.0 branch
      will no longer be maintained, we'll create a new branch for the 7.0
      client line at a later date.
    
    - Tag for 7.0.8 release, all platforms
      boinc_core_release_7_0_8

    /
        configure.ac
        version.h

svn path=/trunk/boinc/; revision=25053
This commit is contained in:
Rom Walton 2012-01-14 04:48:26 +00:00
parent 5b5c6f80f6
commit 89315a3ca7
3 changed files with 20 additions and 7 deletions

View File

@ -513,3 +513,16 @@ Charlie 13 Jan 2012
clientgui/ clientgui/
MainDocument.cpp MainDocument.cpp
Rom 13 Dec 2012
NOTE: Some previously experimental features in the client software are
now important to have for the 7.0 release. The existing 7.0 branch
will no longer be maintained, we'll create a new branch for the 7.0
client line at a later date.
- Tag for 7.0.8 release, all platforms
boinc_core_release_7_0_8
/
configure.ac
version.h

View File

@ -6,7 +6,7 @@ dnl not sure exactly what the minimum version is (but 2.13 wont work)
AC_PREREQ(2.58) AC_PREREQ(2.58)
dnl Set the BOINC version here. You can also use the set-version script. dnl Set the BOINC version here. You can also use the set-version script.
AC_INIT(BOINC, 7.1.0) AC_INIT(BOINC, 7.0.8)
AC_CONFIG_MACRO_DIR([m4]) AC_CONFIG_MACRO_DIR([m4])
LIBBOINC_VERSION=`echo ${PACKAGE_VERSION} | sed 's/\./:/g'` LIBBOINC_VERSION=`echo ${PACKAGE_VERSION} | sed 's/\./:/g'`
AC_SUBST([LIBBOINC_VERSION]) AC_SUBST([LIBBOINC_VERSION])

View File

@ -7,16 +7,16 @@
#define BOINC_MAJOR_VERSION 7 #define BOINC_MAJOR_VERSION 7
/* Minor part of BOINC version number */ /* Minor part of BOINC version number */
#define BOINC_MINOR_VERSION 1 #define BOINC_MINOR_VERSION 0
/* Release part of BOINC version number */ /* Release part of BOINC version number */
#define BOINC_RELEASE 0 #define BOINC_RELEASE 8
/* String representation of BOINC version number */ /* String representation of BOINC version number */
#define BOINC_VERSION_STRING "7.1.0" #define BOINC_VERSION_STRING "7.0.8"
/* Package is a pre-release (Alpha/Beta) package */ /* Package is a pre-release (Alpha/Beta) package */
#define BOINC_PRERELEASE 1 /* #define BOINC_PRERELEASE 1 */
#if (defined(_WIN32) || defined(__APPLE__)) #if (defined(_WIN32) || defined(__APPLE__))
/* Name of package */ /* Name of package */
@ -29,13 +29,13 @@
#define PACKAGE_NAME "BOINC" #define PACKAGE_NAME "BOINC"
/* Define to the full name and version of this package. */ /* Define to the full name and version of this package. */
#define PACKAGE_STRING "BOINC 7.1.0" #define PACKAGE_STRING "BOINC 7.0.8"
/* Define to the one symbol short name of this package. */ /* Define to the one symbol short name of this package. */
#define PACKAGE_TARNAME "boinc" #define PACKAGE_TARNAME "boinc"
/* Define to the version of this package. */ /* Define to the version of this package. */
#define PACKAGE_VERSION "7.1.0" #define PACKAGE_VERSION "7.0.8"
#endif /* #if (defined(_WIN32) || defined(__APPLE__)) */ #endif /* #if (defined(_WIN32) || defined(__APPLE__)) */