Change vesion number to 2.0.7

Signed-off-by: David A. Wheeler <dwheeler@dwheeler.com>
This commit is contained in:
David A. Wheeler 2018-09-30 21:42:56 -04:00
parent 530a88a395
commit da8b2016e0
6 changed files with 7 additions and 7 deletions

View File

@ -9,7 +9,7 @@
<body>
<h1>Flawfinder Results</h1>
Here are the security scan results from
<a href="https://dwheeler.com/flawfinder">Flawfinder version 2.0.6</a>,
<a href="https://dwheeler.com/flawfinder">Flawfinder version 2.0.7</a>,
(C) 2001-2017 <a href="https://dwheeler.com">David A. Wheeler</a>.
Number of rules (primarily dangerous function names) in C/C++ ruleset: 223
<p>

View File

@ -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

View File

@ -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.

View File

@ -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

View File

@ -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

View File

@ -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 = [