Update version numbers
Signed-off-by: David A. Wheeler <dwheeler@dwheeler.com>
This commit is contained in:
parent
cc84bdedfd
commit
34a58911d3
|
@ -9,7 +9,7 @@
|
||||||
<body>
|
<body>
|
||||||
<h1>Flawfinder Results</h1>
|
<h1>Flawfinder Results</h1>
|
||||||
Here are the security scan results from
|
Here are the security scan results from
|
||||||
<a href="https://www.dwheeler.com/flawfinder">Flawfinder version 2.0.4</a>,
|
<a href="https://www.dwheeler.com/flawfinder">Flawfinder version 2.0.6</a>,
|
||||||
(C) 2001-2017 <a href="https://www.dwheeler.com">David A. Wheeler</a>.
|
(C) 2001-2017 <a href="https://www.dwheeler.com">David A. Wheeler</a>.
|
||||||
Number of rules (primarily dangerous function names) in C/C++ ruleset: 223
|
Number of rules (primarily dangerous function names) in C/C++ ruleset: 223
|
||||||
<p>
|
<p>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
Flawfinder version 2.0.4, (C) 2001-2017 David A. Wheeler.
|
Flawfinder version 2.0.6, (C) 2001-2017 David A. Wheeler.
|
||||||
Number of rules (primarily dangerous function names) in C/C++ ruleset: 223
|
Number of rules (primarily dangerous function names) in C/C++ ruleset: 223
|
||||||
Examining test.c
|
Examining test.c
|
||||||
Examining test2.c
|
Examining test2.c
|
||||||
|
|
|
@ -55,7 +55,7 @@ import csv # To support generating CSV format
|
||||||
import hashlib
|
import hashlib
|
||||||
# import formatter
|
# import formatter
|
||||||
|
|
||||||
version = "2.0.4"
|
version = "2.0.6"
|
||||||
|
|
||||||
# Program Options - these are the default values.
|
# Program Options - these are the default values.
|
||||||
# TODO: Switch to boolean types where appropriate.
|
# TODO: Switch to boolean types where appropriate.
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
Name: flawfinder
|
Name: flawfinder
|
||||||
Summary: Examines C/C++ source code for security flaws
|
Summary: Examines C/C++ source code for security flaws
|
||||||
Version: 2.0.1
|
Version: 2.0.6
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
License: GPLv2+
|
License: GPLv2+
|
||||||
Group: Development/Tools
|
Group: Development/Tools
|
||||||
|
|
2
makefile
2
makefile
|
@ -10,7 +10,7 @@
|
||||||
# Eventually switch to using DistUtils to autogenerate.
|
# Eventually switch to using DistUtils to autogenerate.
|
||||||
|
|
||||||
NAME=flawfinder
|
NAME=flawfinder
|
||||||
VERSION=2.0.5
|
VERSION=2.0.6
|
||||||
RPM_VERSION=1
|
RPM_VERSION=1
|
||||||
VERSIONEDNAME=$(NAME)-$(VERSION)
|
VERSIONEDNAME=$(NAME)-$(VERSION)
|
||||||
ARCH=noarch
|
ARCH=noarch
|
||||||
|
|
4
setup.py
4
setup.py
|
@ -9,7 +9,7 @@ from setuptools import setup # Don't need find_packages
|
||||||
|
|
||||||
setup (# Distribution meta-data
|
setup (# Distribution meta-data
|
||||||
name = "flawfinder",
|
name = "flawfinder",
|
||||||
version = "2.0.5",
|
version = "2.0.6",
|
||||||
# We install a script, not a separate package.
|
# We install a script, not a separate package.
|
||||||
# packages = ["flawfinder"], # Must be same as name
|
# packages = ["flawfinder"], # Must be same as name
|
||||||
# Do not need: packages=find_packages(),
|
# 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.
|
ranking them by likely severity.
|
||||||
It is released under the GNU GPL license.""",
|
It is released under the GNU GPL license.""",
|
||||||
url = "http://www.dwheeler.com/flawfinder/",
|
url = "http://www.dwheeler.com/flawfinder/",
|
||||||
download_url = "https://sourceforge.net/projects/flawfinder/files/flawfinder-2.0.5.tar.gz/download",
|
download_url = "https://sourceforge.net/projects/flawfinder/files/flawfinder-2.0.6.tar.gz/download",
|
||||||
zip_safe = True,
|
zip_safe = True,
|
||||||
keywords = ['analysis', 'security', 'analyzer'],
|
keywords = ['analysis', 'security', 'analyzer'],
|
||||||
classifiers = [
|
classifiers = [
|
||||||
|
|
Loading…
Reference in New Issue