From da8b2016e0176cd723c0584226ab33c9ea268a97 Mon Sep 17 00:00:00 2001 From: "David A. Wheeler" Date: Sun, 30 Sep 2018 21:42:56 -0400 Subject: [PATCH] Change vesion number to 2.0.7 Signed-off-by: David A. Wheeler --- correct-results.html | 2 +- correct-results.txt | 2 +- flawfinder | 2 +- flawfinder.spec | 2 +- makefile | 2 +- setup.py | 4 ++-- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/correct-results.html b/correct-results.html index 34bd6fc..a46cf5c 100644 --- 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.6, +Flawfinder version 2.0.7, (C) 2001-2017 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 90dfaf5..fa25522 100644 --- a/correct-results.txt +++ b/correct-results.txt @@ -1,4 +1,4 @@ -Flawfinder version 2.0.6, (C) 2001-2017 David A. Wheeler. +Flawfinder version 2.0.7, (C) 2001-2017 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 f7a921c..3a3a84d 100755 --- a/flawfinder +++ b/flawfinder @@ -55,7 +55,7 @@ import csv # To support generating CSV format import hashlib # import formatter -version = "2.0.6" +version = "2.0.7" # Program Options - these are the default values. # TODO: Switch to boolean types where appropriate. diff --git a/flawfinder.spec b/flawfinder.spec index a05bff8..a0a5cff 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.6 +Version: 2.0.7 Release: 1%{?dist} License: GPLv2+ Group: Development/Tools diff --git a/makefile b/makefile index c4884f8..c004a47 100644 --- a/makefile +++ b/makefile @@ -6,7 +6,7 @@ # how to change version numbers. NAME=flawfinder -VERSION=2.0.6 +VERSION=2.0.7 RPM_VERSION=1 VERSIONEDNAME=$(NAME)-$(VERSION) ARCH=noarch diff --git a/setup.py b/setup.py index 0ebc7fb..300d195 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.6", + version = "2.0.7", # We install a script, not a separate package. # packages = ["flawfinder"], # Must be same as name # Do not need: packages=find_packages(), @@ -22,7 +22,7 @@ C/C++ source code and identify out potential security flaws, ranking them by likely severity. It is released under the GNU GPL license.""", url = "http://dwheeler.com/flawfinder/", - download_url = "https://sourceforge.net/projects/flawfinder/files/flawfinder-2.0.6.tar.gz/download", + download_url = "https://sourceforge.net/projects/flawfinder/files/flawfinder-2.0.7.tar.gz/download", zip_safe = True, keywords = ['analysis', 'security', 'analyzer'], classifiers = [