diff --git a/correct-results-008.txt b/correct-results-008.txt index be0c58d..70c7c5d 100644 --- a/correct-results-008.txt +++ b/correct-results-008.txt @@ -1,4 +1,4 @@ -Flawfinder version 2.0.10, (C) 2001-2019 David A. Wheeler. +Flawfinder version 2.0.11, (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 3fe1d99..dae2a84 100755 --- a/correct-results.html +++ b/correct-results.html @@ -9,7 +9,7 @@

Flawfinder Results

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

diff --git a/correct-results.txt b/correct-results.txt index fd1d4b3..aab0128 100755 --- a/correct-results.txt +++ b/correct-results.txt @@ -1,4 +1,4 @@ -Flawfinder version 2.0.10, (C) 2001-2019 David A. Wheeler. +Flawfinder version 2.0.11, (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 7adafde..553fa31 100755 --- a/flawfinder +++ b/flawfinder @@ -55,7 +55,7 @@ import csv # To support generating CSV format import hashlib # import formatter -version = "2.0.10" +version = "2.0.11" # Program Options - these are the default values. # TODO: Switch to boolean types where appropriate. diff --git a/flawfinder.spec b/flawfinder.spec index fc371fa..f14af8f 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.10 +Version: 2.0.11 Release: 1%{?dist} License: GPLv2+ Group: Development/Tools diff --git a/makefile b/makefile index 642190f..e3b38d7 100644 --- a/makefile +++ b/makefile @@ -6,7 +6,7 @@ # how to change version numbers. NAME=flawfinder -VERSION=2.0.10 +VERSION=2.0.11 RPM_VERSION=1 VERSIONEDNAME=$(NAME)-$(VERSION) ARCH=noarch diff --git a/setup.py b/setup.py index f73ea7e..ddfbd31 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.10", + version = "2.0.11", # We install a script, not a separate package. # packages = ["flawfinder"], # Must be same as name # Do not need: packages=find_packages(),