bump version to 2.17.2
diff --git a/CMakeLists.txt b/CMakeLists.txt index 2475bca..da8478b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt
@@ -5,7 +5,7 @@ set(CMAKE_BUILD_TYPE "RelWithDebInfo" CACHE STRING "Choose the build type") -project(gperftools VERSION 2.17.1 LANGUAGES C CXX +project(gperftools VERSION 2.17.2 LANGUAGES C CXX DESCRIPTION "Performance tools for C++" HOMEPAGE_URL https://github.com/gperftools/gperftools)
diff --git a/MODULE.bazel b/MODULE.bazel index f4949ab..fc187f6 100644 --- a/MODULE.bazel +++ b/MODULE.bazel
@@ -1,4 +1,4 @@ -module(name = "gperftools", version = "2.17.1", compatibility_level = 2) +module(name = "gperftools", version = "2.17.2", compatibility_level = 2) bazel_dep(name = "platforms", version = "0.0.11") bazel_dep(name = "googletest", version = "1.15.2", dev_dependency = True)
diff --git a/NEWS b/NEWS index b1d7ac3..6c65a1e 100644 --- a/NEWS +++ b/NEWS
@@ -1,3 +1,10 @@ +== 15 August 2025 + +gperftools 2.17.2 is out! + +Couple bugs were found in the recently introduced changes. So this is +another point release with some fixes. + == 13 August 2025 gperftools 2.17.1 is out!
diff --git a/configure.ac b/configure.ac index cdd9bd2..382d69e 100644 --- a/configure.ac +++ b/configure.ac
@@ -4,12 +4,12 @@ # make sure we're interpreted by some minimal autoconf AC_PREREQ([2.69]) -AC_INIT([gperftools],[2.17.1],[gperftools@googlegroups.com]) +AC_INIT([gperftools],[2.17.2],[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=10:2:6 -PROFILER_SO_VERSION=5:16:5 -TCMALLOC_AND_PROFILER_SO_VERSION=11:2:7 +TCMALLOC_SO_VERSION=10:3:6 +PROFILER_SO_VERSION=5:17:5 +TCMALLOC_AND_PROFILER_SO_VERSION=11:3:7 AC_SUBST(TCMALLOC_SO_VERSION) AC_SUBST(PROFILER_SO_VERSION)
diff --git a/src/gperftools/tcmalloc.h b/src/gperftools/tcmalloc.h index 0e6a948..126c0a1 100644 --- a/src/gperftools/tcmalloc.h +++ b/src/gperftools/tcmalloc.h
@@ -45,8 +45,8 @@ /* Note, maintainers are expected to update this to match configure.ac for each release */ #define TC_VERSION_MAJOR 2 #define TC_VERSION_MINOR 17 -#define TC_VERSION_PATCH ".1" -#define TC_VERSION_STRING "gperftools 2.17.1" +#define TC_VERSION_PATCH ".2" +#define TC_VERSION_STRING "gperftools 2.17.2" #if __GLIBC__ * 1000 + __GLIBC_MINOR__ >= 2033 /* glibc 2.33 has mallinfo2 */