Skip to content

Commit e80ca0b

Browse files
author
Gray Watson
committed
updating files for release 5.6.1
1 parent 8dbe429 commit e80ca0b

9 files changed

+24
-22
lines changed

ChangeLog.txt

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
-------------------------------------------------------------------------------
22

3+
Version 5.6.1 (11/24/2020):
4+
5+
* Fixed the installdocs target. Thanks to matthewluckie.
6+
37
Version 5.6.0 (11/22/2020):
48

59
* Implemented a snprintf to [hopefully] stop recursion. Thanks to drok.

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.0
4+
Version 5.6.1 -- 11/24/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-10
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
#! /bin/sh
2-
# From configure.ac Revision: 1.37 .
32
# Guess values for system-dependent variables and create Makefiles.
4-
# Generated by GNU Autoconf 2.69 for dmalloc 5.6.0.
3+
# Generated by GNU Autoconf 2.69 for dmalloc 5.6.1.
54
#
65
# Report bugs to <http://dmalloc.com/>.
76
#
@@ -581,8 +580,8 @@ MAKEFLAGS=
581580
# Identity of this package.
582581
PACKAGE_NAME='dmalloc'
583582
PACKAGE_TARNAME='dmalloc'
584-
PACKAGE_VERSION='5.6.0'
585-
PACKAGE_STRING='dmalloc 5.6.0'
583+
PACKAGE_VERSION='5.6.1'
584+
PACKAGE_STRING='dmalloc 5.6.1'
586585
PACKAGE_BUGREPORT='http://dmalloc.com/'
587586
PACKAGE_URL=''
588587

@@ -1260,7 +1259,7 @@ if test "$ac_init_help" = "long"; then
12601259
# Omit some internal or obsolete options to make the list less imposing.
12611260
# This message is too long to be a string in the A/UX 3.1 sh.
12621261
cat <<_ACEOF
1263-
\`configure' configures dmalloc 5.6.0 to adapt to many kinds of systems.
1262+
\`configure' configures dmalloc 5.6.1 to adapt to many kinds of systems.
12641263
12651264
Usage: $0 [OPTION]... [VAR=VALUE]...
12661265
@@ -1321,7 +1320,7 @@ fi
13211320

13221321
if test -n "$ac_init_help"; then
13231322
case $ac_init_help in
1324-
short | recursive ) echo "Configuration of dmalloc 5.6.0:";;
1323+
short | recursive ) echo "Configuration of dmalloc 5.6.1:";;
13251324
esac
13261325
cat <<\_ACEOF
13271326
@@ -1411,7 +1410,7 @@ fi
14111410
test -n "$ac_init_help" && exit $ac_status
14121411
if $ac_init_version; then
14131412
cat <<\_ACEOF
1414-
dmalloc configure 5.6.0
1413+
dmalloc configure 5.6.1
14151414
generated by GNU Autoconf 2.69
14161415
14171416
Copyright (C) 2012 Free Software Foundation, Inc.
@@ -2055,7 +2054,7 @@ cat >config.log <<_ACEOF
20552054
This file contains any messages produced by compilers while
20562055
running configure, to aid debugging if configure makes a mistake.
20572056
2058-
It was created by dmalloc $as_me 5.6.0, which was
2057+
It was created by dmalloc $as_me 5.6.1, which was
20592058
generated by GNU Autoconf 2.69. Invocation command line was
20602059
20612060
$ $0 $@
@@ -6298,7 +6297,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
62986297
# report actual input values of CONFIG_FILES etc. instead of their
62996298
# values after options handling.
63006299
ac_log="
6301-
This file was extended by dmalloc $as_me 5.6.0, which was
6300+
This file was extended by dmalloc $as_me 5.6.1, which was
63026301
generated by GNU Autoconf 2.69. Invocation command line was
63036302
63046303
CONFIG_FILES = $CONFIG_FILES
@@ -6364,7 +6363,7 @@ _ACEOF
63646363
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
63656364
ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
63666365
ac_cs_version="\\
6367-
dmalloc config.status 5.6.0
6366+
dmalloc config.status 5.6.1
63686367
configured by $0, generated by GNU Autoconf 2.69,
63696368
with options \\"\$ac_cs_config\\"
63706369

configure.ac

+1-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,7 @@
1818
#
1919
# The author may be contacted via http://dmalloc.com/
2020
#
21-
AC_REVISION($Revision: 1.37 $)
22-
AC_INIT(dmalloc, 5.6.0, [http://dmalloc.com/])
21+
AC_INIT(dmalloc, 5.6.1, [http://dmalloc.com/])
2322
AC_CONFIG_SRCDIR(dmalloc.c)
2423
AC_CONFIG_HEADER(conf.h)
2524

dmalloc.h.4

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
/* NOTE: start of dmalloc.h.4 */
22

33
/* dmalloc version defines */
4-
#define DMALLOC_VERSION_MAJOR 6 /* X.0.0 */
4+
#define DMALLOC_VERSION_MAJOR 5 /* X.0.0 */
55
#define DMALLOC_VERSION_MINOR 6 /* 0.X.0 */
6-
#define DMALLOC_VERSION_PATCH 0 /* 0.0.X */
6+
#define DMALLOC_VERSION_PATCH 1 /* 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.0
6+
Version: 5.6.1
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.0
15+
@set dmalloc_version Version 5.6.1
1616
@set dmalloc_date November 2020
1717
@set dmalloc_copyright Copyright 1992 to 2020 by Gray Watson.
1818
@c ----------------------------------------------------------------

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.0" ;
38+
static char *dmalloc_version = "5.6.1" ;
3939

4040
#endif /* ! __VERSION_H__ */

0 commit comments

Comments
 (0)