Skip to content

Commit

Permalink
Update documents, version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
rhymeswithmogul committed May 27, 2023
1 parent 412fb7e commit 9ba20a5
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 10 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
## Version 1.0.1 (May 26, 2023)
Fix three possible instances where checking buffer sizes may inadvertently lead to a buffer over-read or app crash (CWE-126).

## Version 1.0.0
First release!
11 changes: 5 additions & 6 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
# IPvMe news

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

## CUSTOM COMMENTS

Custom comments can now be included with the `--comment` option.
Version 1.0.1 is a bugfix release and should function identically to
version 1.0.0.

-----
For information about older versions, consult the CHANGELOG.md files.
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ dnl
dnl You should have received a copy of the GNU Affero General Public License
dnl along with this program. If not, see <http://gnu.org/licenses/agpl-3.0.html>.

AC_INIT([IPvMe], [1.0.0], [[email protected]], [ipvme], [https://github.com/rhymeswithmogul/IPvMe-C])
AC_INIT([IPvMe], [1.0.1], [[email protected]], [ipvme], [https://github.com/rhymeswithmogul/IPvMe-C])
AC_REVISION([$Revision: 1 $])
AM_INIT_AUTOMAKE([foreign subdir-objects -Wall -Werror])
AC_PREREQ
Expand Down Expand Up @@ -50,7 +50,7 @@ AC_CHECK_HEADER([string.h], [], AC_MSG_ERROR([string.h is required to build this
AC_CHECK_FUNC([strcat], [], AC_MSG_ERROR([strcat() is required to build this package but was not found in string.h.]))
AC_CHECK_FUNC([strcmp], [], AC_MSG_ERROR([strcpy() is required to build this package but was not found in string.h.]))
AC_CHECK_FUNC([strcpy], [], AC_MSG_ERROR([strcpy() is required to build this package but was not found in string.h.]))
AC_CHECK_FUNC([strlen], [], AC_MSG_ERROR([strlen() is required to build this package but was not found in string.h.]))
AC_CHECK_FUNC([strnlen], [], AC_MSG_ERROR([strnlen() is required to build this package but was not found in string.h.]))
AC_CHECK_FUNC([strtok], [], AC_MSG_ERROR([strtok() is required to build this package but was not found in string.h.]))

dnl Check for close().
Expand Down
2 changes: 1 addition & 1 deletion src/help.c
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ version ()
{
printf(" -- customized build: %s", compileOptions);
}
puts("\nCopyright © 2022 Colin Cogle.\n\
puts("\nCopyright © 2022-2023 Colin Cogle.\n\
This program comes with ABSOLUTELY NO WARRANTY. This is free software, and\n\
you are welcome to redistribute it under certain conditions. See the GNU Affero\n\
General Public License (version 3.0 or any later version) for more details.");
Expand Down
2 changes: 1 addition & 1 deletion src/ipvme.h
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,6 @@ getUserAgent ();
#endif

#ifndef VERSION
#define VERSION "1.0.0"
#define VERSION "1.0.1"
#endif
#endif /* _ipvme_h */

0 comments on commit 9ba20a5

Please sign in to comment.