bumped version up to 2.6
This commit is contained in:
parent
70a35422b5
commit
4be05e43a1
15
NEWS
15
NEWS
|
@ -1,3 +1,18 @@
|
|||
== 4 July 2017 ==
|
||||
|
||||
gperftools 2.6 is out!
|
||||
|
||||
* Kim Gräsman contributed documentation update for HEAPPROFILESIGNAL
|
||||
environment variable
|
||||
|
||||
* KernelMaker contributed fix for population of min_object_size field
|
||||
returned by MallocExtension::GetFreeListSizes
|
||||
|
||||
* commit 8c3dc52fcfe0 "issue-654: [pprof] handle split text segments"
|
||||
was reverted. Some OSX users reported issues with this commit. Given
|
||||
our pprof implementation is strongly deprecated it is best to drop
|
||||
recently introduced features rather than breaking it badly.
|
||||
|
||||
== 22 May 2017 ==
|
||||
|
||||
gperftools 2.6rc4 is out!
|
||||
|
|
|
@ -4,11 +4,11 @@
|
|||
# make sure we're interpreted by some minimal autoconf
|
||||
AC_PREREQ([2.59])
|
||||
|
||||
AC_INIT([gperftools],[2.5.93],[gperftools@googlegroups.com])
|
||||
AC_INIT([gperftools],[2.6],[gperftools@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=8:3:4
|
||||
PROFILER_SO_VERSION=4:12:4
|
||||
TCMALLOC_SO_VERSION=8:4:4
|
||||
PROFILER_SO_VERSION=4:13:4
|
||||
|
||||
AC_SUBST(TCMALLOC_SO_VERSION)
|
||||
AC_SUBST(PROFILER_SO_VERSION)
|
||||
|
|
|
@ -236,7 +236,7 @@
|
|||
#define PACKAGE_NAME "gperftools"
|
||||
|
||||
/* Define to the full name and version of this package. */
|
||||
#define PACKAGE_STRING "gperftools 2.5.93"
|
||||
#define PACKAGE_STRING "gperftools 2.6"
|
||||
|
||||
/* Define to the one symbol short name of this package. */
|
||||
#define PACKAGE_TARNAME "gperftools"
|
||||
|
@ -245,7 +245,7 @@
|
|||
#undef PACKAGE_URL
|
||||
|
||||
/* Define to the version of this package. */
|
||||
#define PACKAGE_VERSION "2.5.93"
|
||||
#define PACKAGE_VERSION "2.6"
|
||||
|
||||
/* How to access the PC from a struct ucontext */
|
||||
#undef PC_FROM_UCONTEXT
|
||||
|
|
|
@ -40,9 +40,9 @@
|
|||
|
||||
/* Define the version number so folks can check against it */
|
||||
#define TC_VERSION_MAJOR 2
|
||||
#define TC_VERSION_MINOR 5
|
||||
#define TC_VERSION_PATCH ".93"
|
||||
#define TC_VERSION_STRING "gperftools 2.5.93"
|
||||
#define TC_VERSION_MINOR 6
|
||||
#define TC_VERSION_PATCH ""
|
||||
#define TC_VERSION_STRING "gperftools 2.6"
|
||||
|
||||
#ifndef PERFTOOLS_THROW
|
||||
|
||||
|
|
Loading…
Reference in New Issue