Skip to content

Commit

Permalink
bump version to 2.13
Browse files Browse the repository at this point in the history
  • Loading branch information
alk committed Sep 11, 2023
1 parent 4ec8c9d commit dffb4a2
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 12 deletions.
8 changes: 4 additions & 4 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ cmake_minimum_required(VERSION 3.12)

# Based on configure.ac

project(gperftools VERSION 2.12 LANGUAGES C CXX
project(gperftools VERSION 2.13 LANGUAGES C CXX
DESCRIPTION "Performance tools for C++"
HOMEPAGE_URL https://github.com/gperftools/gperftools)

# Update this value for every release!
set(TCMALLOC_SO_VERSION 9.13.5)
set(PROFILER_SO_VERSION 5.8.5)
set(TCMALLOC_AND_PROFILER_SO_VERSION 10.8.6)
set(TCMALLOC_SO_VERSION 9.14.5)
set(PROFILER_SO_VERSION 5.9.5)
set(TCMALLOC_AND_PROFILER_SO_VERSION 10.9.6)

# The user can choose not to compile in the heap-profiler, the
# heap-checker, or the cpu-profiler. There's also the possibility
Expand Down
18 changes: 18 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
== 11 Sep 2023
gperftools 2.13 is out!

This release includes a few minor fixes:

* Ivan Dlugos has fixed some issues with cmake and config.h defines.

* 32-bit builds no longer require 64-bit atomics (which we wrongly
introduced in 2.11 and which broke builds on some 32-bit
architectures).

* generic_fp backtracing method now uses robust address probing
method. The previous approach had occasional false positives, which
caused occasional rare crashes.

* In some cases, MSVC generated TrivialOnce machine code that
deadlocked programs on startup. The issue is now fixed.

== 24 Aug 2023
gperftools 2.12 is out!

Expand Down
8 changes: 4 additions & 4 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
# make sure we're interpreted by some minimal autoconf
AC_PREREQ([2.69])

AC_INIT([gperftools],[2.12],[gperftools@googlegroups.com])
AC_INIT([gperftools],[2.13],[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=9:13:5
PROFILER_SO_VERSION=5:8:5
TCMALLOC_AND_PROFILER_SO_VERSION=10:8:6
TCMALLOC_SO_VERSION=9:14:5
PROFILER_SO_VERSION=5:9:5
TCMALLOC_AND_PROFILER_SO_VERSION=10:9:6

AC_SUBST(TCMALLOC_SO_VERSION)
AC_SUBST(PROFILER_SO_VERSION)
Expand Down
4 changes: 2 additions & 2 deletions src/windows/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@
#define PACKAGE_NAME "gperftools"

/* Define to the full name and version of this package. */
#define PACKAGE_STRING "gperftools 2.12"
#define PACKAGE_STRING "gperftools 2.13"

/* Define to the one symbol short name of this package. */
#define PACKAGE_TARNAME "gperftools"
Expand All @@ -221,7 +221,7 @@
#define PACKAGE_URL ""

/* Define to the version of this package. */
#define PACKAGE_VERSION "2.12"
#define PACKAGE_VERSION "2.13"

/* How to access the PC from a struct ucontext */
/* #undef PC_FROM_UCONTEXT */
Expand Down
4 changes: 2 additions & 2 deletions src/windows/gperftools/tcmalloc.h
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@

/* Define the version number so folks can check against it */
#define TC_VERSION_MAJOR 2
#define TC_VERSION_MINOR 12
#define TC_VERSION_MINOR 13
#define TC_VERSION_PATCH ""
#define TC_VERSION_STRING "gperftools 2.12"
#define TC_VERSION_STRING "gperftools 2.13"

#ifndef PERFTOOLS_NOTHROW

Expand Down

0 comments on commit dffb4a2

Please sign in to comment.