Skip to content

Commit 60bab84

Browse files
author
Gray Watson
committed
releasing 5.6.3
1 parent a4c252b commit 60bab84

9 files changed

+20
-20
lines changed

ChangeLog.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Version 5.6.3 (12/??/2020):
1+
Version 5.6.3 (12/23/2020):
22
* Fixed missing dmallocc.o <- dmalloc.h dependency. Thanks to @ffontaine.
33
* Fixed more %p usage and issues around pointer arithmetic. Thanks to aitap.
44

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Debug Malloc Library
22
====================
33

4-
Version 5.6.2 -- 12/17/2020
4+
Version 5.6.3 -- 12/23/2020
55

66
The debug memory allocation or "dmalloc" library has been designed as a drop in replacement for the system's
77
`malloc`, `realloc`, `calloc`, `free` and other memory management routines while providing powerful debugging

configure

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#! /bin/sh
22
# Guess values for system-dependent variables and create Makefiles.
3-
# Generated by GNU Autoconf 2.69 for dmalloc 5.6.2.
3+
# Generated by GNU Autoconf 2.69 for dmalloc 5.6.3.
44
#
55
# Report bugs to <http://dmalloc.com/>.
66
#
@@ -580,8 +580,8 @@ MAKEFLAGS=
580580
# Identity of this package.
581581
PACKAGE_NAME='dmalloc'
582582
PACKAGE_TARNAME='dmalloc'
583-
PACKAGE_VERSION='5.6.2'
584-
PACKAGE_STRING='dmalloc 5.6.2'
583+
PACKAGE_VERSION='5.6.3'
584+
PACKAGE_STRING='dmalloc 5.6.3'
585585
PACKAGE_BUGREPORT='http://dmalloc.com/'
586586
PACKAGE_URL=''
587587

@@ -1260,7 +1260,7 @@ if test "$ac_init_help" = "long"; then
12601260
# Omit some internal or obsolete options to make the list less imposing.
12611261
# This message is too long to be a string in the A/UX 3.1 sh.
12621262
cat <<_ACEOF
1263-
\`configure' configures dmalloc 5.6.2 to adapt to many kinds of systems.
1263+
\`configure' configures dmalloc 5.6.3 to adapt to many kinds of systems.
12641264
12651265
Usage: $0 [OPTION]... [VAR=VALUE]...
12661266
@@ -1321,7 +1321,7 @@ fi
13211321

13221322
if test -n "$ac_init_help"; then
13231323
case $ac_init_help in
1324-
short | recursive ) echo "Configuration of dmalloc 5.6.2:";;
1324+
short | recursive ) echo "Configuration of dmalloc 5.6.3:";;
13251325
esac
13261326
cat <<\_ACEOF
13271327
@@ -1411,7 +1411,7 @@ fi
14111411
test -n "$ac_init_help" && exit $ac_status
14121412
if $ac_init_version; then
14131413
cat <<\_ACEOF
1414-
dmalloc configure 5.6.2
1414+
dmalloc configure 5.6.3
14151415
generated by GNU Autoconf 2.69
14161416
14171417
Copyright (C) 2012 Free Software Foundation, Inc.
@@ -2055,7 +2055,7 @@ cat >config.log <<_ACEOF
20552055
This file contains any messages produced by compilers while
20562056
running configure, to aid debugging if configure makes a mistake.
20572057
2058-
It was created by dmalloc $as_me 5.6.2, which was
2058+
It was created by dmalloc $as_me 5.6.3, which was
20592059
generated by GNU Autoconf 2.69. Invocation command line was
20602060
20612061
$ $0 $@
@@ -6356,7 +6356,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
63566356
# report actual input values of CONFIG_FILES etc. instead of their
63576357
# values after options handling.
63586358
ac_log="
6359-
This file was extended by dmalloc $as_me 5.6.2, which was
6359+
This file was extended by dmalloc $as_me 5.6.3, which was
63606360
generated by GNU Autoconf 2.69. Invocation command line was
63616361
63626362
CONFIG_FILES = $CONFIG_FILES
@@ -6422,7 +6422,7 @@ _ACEOF
64226422
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
64236423
ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
64246424
ac_cs_version="\\
6425-
dmalloc config.status 5.6.2
6425+
dmalloc config.status 5.6.3
64266426
configured by $0, generated by GNU Autoconf 2.69,
64276427
with options \\"\$ac_cs_config\\"
64286428

configure.ac

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
#
1919
# The author may be contacted via http://dmalloc.com/
2020
#
21-
AC_INIT(dmalloc, 5.6.2, [http://dmalloc.com/])
21+
AC_INIT(dmalloc, 5.6.3, [http://dmalloc.com/])
2222
AC_CONFIG_SRCDIR(dmalloc.c)
2323
AC_CONFIG_HEADER(conf.h)
2424

dmalloc.h.3

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/* dmalloc version defines */
44
#define DMALLOC_VERSION_MAJOR 5 /* X.0.0 */
55
#define DMALLOC_VERSION_MINOR 6 /* 0.X.0 */
6-
#define DMALLOC_VERSION_PATCH 2 /* 0.0.X */
6+
#define DMALLOC_VERSION_PATCH 3 /* 0.0.X */
77

88
/* this defines what type the standard void memory-pointer is */
99
#if (defined(__STDC__) && __STDC__ == 1) || defined(__cplusplus) || defined(STDC_HEADERS) || defined(_ISO_STDLIB_ISO_H)

dmalloc.html

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dmalloc.spec

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44
Summary: Debug Malloc (Dmalloc)
55
Name: dmalloc
6-
Version: 5.6.2
6+
Version: 5.6.3
77
Release: 1
88
Group: Development/Libraries
99
Copyright: public domain

dmalloc.texi

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
@end direntry
1313

1414
@c ----------------------------------------------------------------
15-
@set dmalloc_version Version 5.6.2
15+
@set dmalloc_version Version 5.6.3
1616
@set dmalloc_month December
1717
@set dmalloc_year 2020
1818
@set dmalloc_date @value{dmalloc_month} @value{dmalloc_year}

version.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,6 @@
3535
*
3636
* Make sure to also git tag the release. dmalloc_release_X_X_X
3737
*/
38-
static char *dmalloc_version = "5.6.2" ;
38+
static char *dmalloc_version = "5.6.3" ;
3939

4040
#endif /* ! __VERSION_H__ */

0 commit comments

Comments
 (0)