Skip to content

Commit 9ba20a5

Browse files
Update documents, version bump
1 parent 412fb7e commit 9ba20a5

File tree

5 files changed

+12
-10
lines changed

5 files changed

+12
-10
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
1+
## Version 1.0.1 (May 26, 2023)
2+
Fix three possible instances where checking buffer sizes may inadvertently lead to a buffer over-read or app crash (CWE-126).
3+
14
## Version 1.0.0
25
First release!

NEWS

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
# IPvMe news
22

3-
This file details all of the user-facing changes that are in versions 1.6 of
4-
IPvMe. For more details, please consult the CHANGELOG file or
5-
this project's GitHub page.
3+
This file details all of the user-facing changes that are in versions
4+
of IPvMe. For more details, please consult the CHANGELOG file or this
5+
project's GitHub page.
66

7-
## CUSTOM COMMENTS
8-
9-
Custom comments can now be included with the `--comment` option.
7+
Version 1.0.1 is a bugfix release and should function identically to
8+
version 1.0.0.
109

1110
-----
1211
For information about older versions, consult the CHANGELOG.md files.

configure.ac

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ dnl
1717
dnl You should have received a copy of the GNU Affero General Public License
1818
dnl along with this program. If not, see <http://gnu.org/licenses/agpl-3.0.html>.
1919

20-
AC_INIT([IPvMe], [1.0.0], [colin@colincogle.name], [ipvme], [https://github.com/rhymeswithmogul/IPvMe-C])
20+
AC_INIT([IPvMe], [1.0.1], [colin@colincogle.name], [ipvme], [https://github.com/rhymeswithmogul/IPvMe-C])
2121
AC_REVISION([$Revision: 1 $])
2222
AM_INIT_AUTOMAKE([foreign subdir-objects -Wall -Werror])
2323
AC_PREREQ
@@ -50,7 +50,7 @@ AC_CHECK_HEADER([string.h], [], AC_MSG_ERROR([string.h is required to build this
5050
AC_CHECK_FUNC([strcat], [], AC_MSG_ERROR([strcat() is required to build this package but was not found in string.h.]))
5151
AC_CHECK_FUNC([strcmp], [], AC_MSG_ERROR([strcpy() is required to build this package but was not found in string.h.]))
5252
AC_CHECK_FUNC([strcpy], [], AC_MSG_ERROR([strcpy() is required to build this package but was not found in string.h.]))
53-
AC_CHECK_FUNC([strlen], [], AC_MSG_ERROR([strlen() is required to build this package but was not found in string.h.]))
53+
AC_CHECK_FUNC([strnlen], [], AC_MSG_ERROR([strnlen() is required to build this package but was not found in string.h.]))
5454
AC_CHECK_FUNC([strtok], [], AC_MSG_ERROR([strtok() is required to build this package but was not found in string.h.]))
5555

5656
dnl Check for close().

src/help.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ version ()
5555
{
5656
printf(" -- customized build: %s", compileOptions);
5757
}
58-
puts("\nCopyright © 2022 Colin Cogle.\n\
58+
puts("\nCopyright © 2022-2023 Colin Cogle.\n\
5959
This program comes with ABSOLUTELY NO WARRANTY. This is free software, and\n\
6060
you are welcome to redistribute it under certain conditions. See the GNU Affero\n\
6161
General Public License (version 3.0 or any later version) for more details.");

src/ipvme.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,6 @@ getUserAgent ();
111111
#endif
112112

113113
#ifndef VERSION
114-
#define VERSION "1.0.0"
114+
#define VERSION "1.0.1"
115115
#endif
116116
#endif /* _ipvme_h */

0 commit comments

Comments
 (0)