diff --git a/correct-results-008.txt b/correct-results-008.txt index 0176a31..be0c58d 100644 --- a/correct-results-008.txt +++ b/correct-results-008.txt @@ -1,4 +1,4 @@ -Flawfinder version 2.0.9, (C) 2001-2017 David A. Wheeler. +Flawfinder version 2.0.10, (C) 2001-2019 David A. Wheeler. Showing hits not in test-saved-hitlist-008.txt Number of rules (primarily dangerous function names) in C/C++ ruleset: 223 diff --git a/correct-results.html b/correct-results.html index 0de8c5a..3fe1d99 100755 --- a/correct-results.html +++ b/correct-results.html @@ -9,8 +9,8 @@

Flawfinder Results

Here are the security scan results from -Flawfinder version 2.0.9, -(C) 2001-2017 David A. Wheeler. +Flawfinder version 2.0.10, +(C) 2001-2019 David A. Wheeler. Number of rules (primarily dangerous function names) in C/C++ ruleset: 223

Examining test.c
diff --git a/correct-results.txt b/correct-results.txt index 4483837..fd1d4b3 100755 --- a/correct-results.txt +++ b/correct-results.txt @@ -1,4 +1,4 @@ -Flawfinder version 2.0.9, (C) 2001-2017 David A. Wheeler. +Flawfinder version 2.0.10, (C) 2001-2019 David A. Wheeler. Number of rules (primarily dangerous function names) in C/C++ ruleset: 223 Examining test.c Examining test2.c diff --git a/flawfinder b/flawfinder index 4f25b21..2f06fbc 100755 --- a/flawfinder +++ b/flawfinder @@ -14,7 +14,7 @@ # # Currently this program can only analyze C/C++ code. # -# Copyright (C) 2001-2017 David A. Wheeler. +# Copyright (C) 2001-2019 David A. Wheeler. # This is released under the # GNU General Public License (GPL) version 2 or later (GPL-2.0+): # @@ -55,7 +55,7 @@ import csv # To support generating CSV format import hashlib # import formatter -version = "2.0.9" +version = "2.0.10" # Program Options - these are the default values. # TODO: Switch to boolean types where appropriate. @@ -1693,9 +1693,9 @@ def display_header(): print("

Flawfinder Results

") print("Here are the security scan results from") print('Flawfinder version %s,' % version) - print('(C) 2001-2017 David A. Wheeler.') + print('(C) 2001-2019 David A. Wheeler.') else: - print("Flawfinder version %s, (C) 2001-2017 David A. Wheeler." % version) + print("Flawfinder version %s, (C) 2001-2019 David A. Wheeler." % version) displayed_header = 1 diff --git a/flawfinder.spec b/flawfinder.spec index e221721..fc371fa 100644 --- a/flawfinder.spec +++ b/flawfinder.spec @@ -1,6 +1,6 @@ Name: flawfinder Summary: Examines C/C++ source code for security flaws -Version: 2.0.9 +Version: 2.0.10 Release: 1%{?dist} License: GPLv2+ Group: Development/Tools diff --git a/makefile b/makefile index 62d5c95..642190f 100644 --- a/makefile +++ b/makefile @@ -6,7 +6,7 @@ # how to change version numbers. NAME=flawfinder -VERSION=2.0.9 +VERSION=2.0.10 RPM_VERSION=1 VERSIONEDNAME=$(NAME)-$(VERSION) ARCH=noarch diff --git a/setup.py b/setup.py index b0c2970..f73ea7e 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ from setuptools import setup # Don't need find_packages setup (# Distribution meta-data name = "flawfinder", - version = "2.0.9", + version = "2.0.10", # We install a script, not a separate package. # packages = ["flawfinder"], # Must be same as name # Do not need: packages=find_packages(),