Skip to content

Commit bf801de

Browse files
Public release version FormatFuzzer 1.0
1 parent dc5ea5d commit bf801de

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

configure

Lines changed: 10 additions & 10 deletions
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 FormatFuzzer 0.1.0.
3+
# Generated by GNU Autoconf 2.69 for FormatFuzzer 1.0.
44
#
55
#
66
# Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
@@ -576,8 +576,8 @@ MAKEFLAGS=
576576
# Identity of this package.
577577
PACKAGE_NAME='FormatFuzzer'
578578
PACKAGE_TARNAME='formatfuzzer'
579-
PACKAGE_VERSION='0.1.0'
580-
PACKAGE_STRING='FormatFuzzer 0.1.0'
579+
PACKAGE_VERSION='1.0'
580+
PACKAGE_STRING='FormatFuzzer 1.0'
581581
PACKAGE_BUGREPORT=''
582582
PACKAGE_URL=''
583583

@@ -1244,7 +1244,7 @@ if test "$ac_init_help" = "long"; then
12441244
# Omit some internal or obsolete options to make the list less imposing.
12451245
# This message is too long to be a string in the A/UX 3.1 sh.
12461246
cat <<_ACEOF
1247-
\`configure' configures FormatFuzzer 0.1.0 to adapt to many kinds of systems.
1247+
\`configure' configures FormatFuzzer 1.0 to adapt to many kinds of systems.
12481248
12491249
Usage: $0 [OPTION]... [VAR=VALUE]...
12501250
@@ -1311,7 +1311,7 @@ fi
13111311

13121312
if test -n "$ac_init_help"; then
13131313
case $ac_init_help in
1314-
short | recursive ) echo "Configuration of FormatFuzzer 0.1.0:";;
1314+
short | recursive ) echo "Configuration of FormatFuzzer 1.0:";;
13151315
esac
13161316
cat <<\_ACEOF
13171317
@@ -1402,7 +1402,7 @@ fi
14021402
test -n "$ac_init_help" && exit $ac_status
14031403
if $ac_init_version; then
14041404
cat <<\_ACEOF
1405-
FormatFuzzer configure 0.1.0
1405+
FormatFuzzer configure 1.0
14061406
generated by GNU Autoconf 2.69
14071407
14081408
Copyright (C) 2012 Free Software Foundation, Inc.
@@ -1457,7 +1457,7 @@ cat >config.log <<_ACEOF
14571457
This file contains any messages produced by compilers while
14581458
running configure, to aid debugging if configure makes a mistake.
14591459
1460-
It was created by FormatFuzzer $as_me 0.1.0, which was
1460+
It was created by FormatFuzzer $as_me 1.0, which was
14611461
generated by GNU Autoconf 2.69. Invocation command line was
14621462
14631463
$ $0 $@
@@ -2323,7 +2323,7 @@ fi
23232323
23242324
# Define the identity of the package.
23252325
PACKAGE='formatfuzzer'
2326-
VERSION='0.1.0'
2326+
VERSION='1.0'
23272327
23282328
23292329
cat >>confdefs.h <<_ACEOF
@@ -4767,7 +4767,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
47674767
# report actual input values of CONFIG_FILES etc. instead of their
47684768
# values after options handling.
47694769
ac_log="
4770-
This file was extended by FormatFuzzer $as_me 0.1.0, which was
4770+
This file was extended by FormatFuzzer $as_me 1.0, which was
47714771
generated by GNU Autoconf 2.69. Invocation command line was
47724772
47734773
CONFIG_FILES = $CONFIG_FILES
@@ -4833,7 +4833,7 @@ _ACEOF
48334833
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
48344834
ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
48354835
ac_cs_version="\\
4836-
FormatFuzzer config.status 0.1.0
4836+
FormatFuzzer config.status 1.0
48374837
configured by $0, generated by GNU Autoconf 2.69,
48384838
with options \\"\$ac_cs_config\\"
48394839

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
AC_INIT([FormatFuzzer], 0.1.0)
1+
AC_INIT([FormatFuzzer], 1.0)
22
AC_CONFIG_MACRO_DIRS([m4])
33
AC_CONFIG_HEADERS(config.h)
44
AM_INIT_AUTOMAKE

fuzzer.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1748,7 +1748,7 @@ int benchmark(int argc, char *argv[])
17481748

17491749
int version(int argc, char *argv[])
17501750
{
1751-
fprintf(stderr, "This is FormatFuzzer 0.1.0\n");
1751+
fprintf(stderr, "This is FormatFuzzer 1.0\n");
17521752
return 0;
17531753
}
17541754

0 commit comments

Comments
 (0)