summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAliaksey Kandratsenka <alkondratenko@gmail.com>2016-03-12 11:48:20 -0800
committerAliaksey Kandratsenka <alkondratenko@gmail.com>2016-03-12 11:59:05 -0800
commit632de2975e63f89613af9ab99bc1603a4a6332aa (patch)
tree1008255179cef2e7c787a6e0b7026b3a4c6b78b7
parent6682016092c735feb29021acbb8c2067fdf1a209 (diff)
downloadgperftools-2.5.tar.gz
bumped version up to 2.5gperftools-2.5
-rw-r--r--NEWS6
-rw-r--r--configure.ac6
-rw-r--r--src/windows/config.h6
-rw-r--r--src/windows/gperftools/tcmalloc.h6
4 files changed, 15 insertions, 9 deletions
diff --git a/NEWS b/NEWS
index f2d3512..fc81a7a 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,9 @@
+== 12 Mar 2016 ==
+
+gperftools 2.5 is out!
+
+Just single bugfix was merged after rc2. Which was fix for issue #777.
+
== 5 Mar 2016 ==
gperftools 2.5rc2 is out!
diff --git a/configure.ac b/configure.ac
index 76f6b80..3a99b85 100644
--- a/configure.ac
+++ b/configure.ac
@@ -4,11 +4,11 @@
# make sure we're interpreted by some minimal autoconf
AC_PREREQ([2.59])
-AC_INIT([gperftools],[2.4.91],[google-perftools@googlegroups.com])
+AC_INIT([gperftools],[2.5],[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=6:8:2
-PROFILER_SO_VERSION=4:7:4
+TCMALLOC_SO_VERSION=7:0:3
+PROFILER_SO_VERSION=4:8:4
AC_SUBST(TCMALLOC_SO_VERSION)
AC_SUBST(PROFILER_SO_VERSION)
diff --git a/src/windows/config.h b/src/windows/config.h
index c731840..6bbeb1a 100644
--- a/src/windows/config.h
+++ b/src/windows/config.h
@@ -230,13 +230,13 @@
#define PACKAGE "gperftools"
/* Define to the address where bug reports for this package should be sent. */
-#define PACKAGE_BUGREPORT "opensource@google.com"
+#define PACKAGE_BUGREPORT "gperftools@googlegroups.com"
/* Define to the full name of this package. */
#define PACKAGE_NAME "gperftools"
/* Define to the full name and version of this package. */
-#define PACKAGE_STRING "gperftools 2.4.91"
+#define PACKAGE_STRING "gperftools 2.5"
/* 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.4.91"
+#define PACKAGE_VERSION "2.5"
/* How to access the PC from a struct ucontext */
#undef PC_FROM_UCONTEXT
diff --git a/src/windows/gperftools/tcmalloc.h b/src/windows/gperftools/tcmalloc.h
index eecdf35..1140a65 100644
--- a/src/windows/gperftools/tcmalloc.h
+++ b/src/windows/gperftools/tcmalloc.h
@@ -40,9 +40,9 @@
/* Define the version number so folks can check against it */
#define TC_VERSION_MAJOR 2
-#define TC_VERSION_MINOR 4
-#define TC_VERSION_PATCH ".91"
-#define TC_VERSION_STRING "gperftools 2.4.91"
+#define TC_VERSION_MINOR 5
+#define TC_VERSION_PATCH ""
+#define TC_VERSION_STRING "gperftools 2.5"
#ifdef __cplusplus
#define PERFTOOLS_THROW throw()