Skip to content

Commit

Permalink
bump version to 2.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
alk committed Mar 3, 2021
1 parent c2f6040 commit f7c6fb6
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 14 deletions.
6 changes: 3 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ project(gperftools VERSION 2.9.0 LANGUAGES C CXX
HOMEPAGE_URL http://code.google.com/p/gperftools/)

# Update this value for every release!
set(TCMALLOC_SO_VERSION 9.8.5)
set(PROFILER_SO_VERSION 5.3.5)
set(TCMALLOC_AND_PROFILER_SO_VERSION 10.3.6)
set(TCMALLOC_SO_VERSION 9.9.5)
set(PROFILER_SO_VERSION 5.4.5)
set(TCMALLOC_AND_PROFILER_SO_VERSION 10.4.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
16 changes: 14 additions & 2 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
== 2 March 2021 ==
gperftools 2.9.1 is out!

Minor fixes landed since previous release:

* OSX builds new prefer backtrace() and have somewhat working heap
sampling.

* Incorrect assertion failure was fixed that crashed tcmalloc if
assertions were on and sized delete was used. More details in github
issue #1254.

== 21 February 2021 ==
gperftools 2.9 is out!

Expand All @@ -19,8 +31,8 @@ gperftools 2.9rc is out!

Here are notable changes:

* Jarno Rajahalme has contributed fix crashing bug in syscalls support
for aarch64.
* Jarno Rajahalme has contributed fix for crashing bug in syscalls
support for aarch64.

* User SSE4 has contributed basic support for Elbrus 2000 architecture
(!)
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.59])

AC_INIT([gperftools],[2.9.0],[[email protected]])
AC_INIT([gperftools],[2.9.1],[[email protected]])
# 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:8:5
PROFILER_SO_VERSION=5:3:5
TCMALLOC_AND_PROFILER_SO_VERSION=10:3:6
TCMALLOC_SO_VERSION=9:9:5
PROFILER_SO_VERSION=5:4:5
TCMALLOC_AND_PROFILER_SO_VERSION=10:4:6

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

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

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

/* Define to the version of this package. */
#define PACKAGE_VERSION "2.8.1"
#define PACKAGE_VERSION "2.9.1"

/* How to access the PC from a struct ucontext */
/* #undef PC_FROM_UCONTEXT */
Expand Down Expand Up @@ -279,7 +279,7 @@
/* #undef TCMALLOC_PAGE_SIZE_SHIFT */

/* Version number of package */
#define VERSION "2.9.0"
#define VERSION "2.9.1"

/* C99 says: define this to get the PRI... macros from stdint.h */
#ifndef __STDC_FORMAT_MACROS
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 @@ -44,8 +44,8 @@
/* Define the version number so folks can check against it */
#define TC_VERSION_MAJOR 2
#define TC_VERSION_MINOR 9
#define TC_VERSION_PATCH ".0"
#define TC_VERSION_STRING "gperftools 2.9.0"
#define TC_VERSION_PATCH ".1"
#define TC_VERSION_STRING "gperftools 2.9.1"

#ifndef PERFTOOLS_NOTHROW

Expand Down

0 comments on commit f7c6fb6

Please sign in to comment.