bump version to 2.1
git-svn-id: http://gperftools.googlecode.com/svn/trunk@236 6b5cf1ce-ec42-a296-1ba9-69fdba395a50
This commit is contained in:
parent
805a660193
commit
674fcd94a8
8
NEWS
8
NEWS
|
@ -1,3 +1,11 @@
|
|||
== 30 July 2013 ==
|
||||
|
||||
gperftools 2.1 is out!
|
||||
|
||||
Just few fixes where merged after rc. Most notably:
|
||||
|
||||
* Some fixes for debug allocation on POWER/Linux
|
||||
|
||||
== 20 July 2013 ==
|
||||
|
||||
gperftools 2.1rc is out!
|
||||
|
|
|
@ -4,11 +4,11 @@
|
|||
# make sure we're interpreted by some minimal autoconf
|
||||
AC_PREREQ([2.68])
|
||||
|
||||
AC_INIT([gperftools],[2.0.99],[google-perftools@googlegroups.com])
|
||||
AC_INIT([gperftools],[2.1],[google-perftools@googlegroups.com])
|
||||
# Update this value for every release! (A:B:C will map to foo.so.(A-C).C.B)
|
||||
# http://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html
|
||||
TCMALLOC_SO_VERSION=5:1:1
|
||||
PROFILER_SO_VERSION=3:1:3
|
||||
TCMALLOC_SO_VERSION=5:2:1
|
||||
PROFILER_SO_VERSION=3:2:3
|
||||
|
||||
AC_SUBST(TCMALLOC_SO_VERSION)
|
||||
AC_SUBST(PROFILER_SO_VERSION)
|
||||
|
|
|
@ -1,7 +1,12 @@
|
|||
gperftools (2.1-1) unstable; urgency=low
|
||||
|
||||
* New upstream release.
|
||||
|
||||
-- gperftools Contributors <google-perftools@googlegroups.com> Tue, 30 Jul 2013 11:51:13 +0300
|
||||
|
||||
gperftools (2.0.99-1) unstable; urgency=low
|
||||
|
||||
* New upstream release.
|
||||
* Package renamed from google-perftools to gperftools.
|
||||
|
||||
-- gperftools Contributors <google-perftools@googlegroups.com> Sat, 20 Jul 2013 14:21:10 -0700
|
||||
|
||||
|
|
|
@ -222,7 +222,7 @@
|
|||
#define PACKAGE_NAME "gperftools"
|
||||
|
||||
/* Define to the full name and version of this package. */
|
||||
#define PACKAGE_STRING "gperftools 2.0.99"
|
||||
#define PACKAGE_STRING "gperftools 2.1"
|
||||
|
||||
/* Define to the one symbol short name of this package. */
|
||||
#define PACKAGE_TARNAME "gperftools"
|
||||
|
@ -231,7 +231,7 @@
|
|||
#undef PACKAGE_URL
|
||||
|
||||
/* Define to the version of this package. */
|
||||
#define PACKAGE_VERSION "2.0.99"
|
||||
#define PACKAGE_VERSION "2.1"
|
||||
|
||||
/* How to access the PC from a struct ucontext */
|
||||
#undef PC_FROM_UCONTEXT
|
||||
|
|
|
@ -49,9 +49,9 @@
|
|||
|
||||
// Define the version number so folks can check against it
|
||||
#define TC_VERSION_MAJOR 2
|
||||
#define TC_VERSION_MINOR 0
|
||||
#define TC_VERSION_PATCH ".99"
|
||||
#define TC_VERSION_STRING "gperftools 2.0.99"
|
||||
#define TC_VERSION_MINOR 1
|
||||
#define TC_VERSION_PATCH ""
|
||||
#define TC_VERSION_STRING "gperftools 2.1"
|
||||
|
||||
#include <stdlib.h> // for struct mallinfo, if it's defined
|
||||
|
||||
|
|
Loading…
Reference in New Issue