Update version number to 2.0.2
Signed-off-by: David A. Wheeler <dwheeler@dwheeler.com>
This commit is contained in:
parent
cead0828ef
commit
d38535419f
|
@ -9,7 +9,7 @@
|
|||
<body>
|
||||
<h1>Flawfinder Results</h1>
|
||||
Here are the security scan results from
|
||||
<a href="http://www.dwheeler.com/flawfinder">Flawfinder version 2.0.1</a>,
|
||||
<a href="http://www.dwheeler.com/flawfinder">Flawfinder version 2.0.2</a>,
|
||||
(C) 2001-2017 <a href="http://www.dwheeler.com">David A. Wheeler</a>.
|
||||
Number of rules (primarily dangerous function names) in C/C++ ruleset: 219
|
||||
<p>
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Flawfinder version 2.0.1, (C) 2001-2017 David A. Wheeler.
|
||||
Flawfinder version 2.0.2, (C) 2001-2017 David A. Wheeler.
|
||||
Number of rules (primarily dangerous function names) in C/C++ ruleset: 219
|
||||
Examining test.c
|
||||
Examining test2.c
|
||||
|
|
|
@ -55,7 +55,7 @@ import csv # To support generating CSV format
|
|||
import hashlib
|
||||
# import formatter
|
||||
|
||||
version = "2.0.1"
|
||||
version = "2.0.2"
|
||||
|
||||
# Program Options - these are the default values.
|
||||
# TODO: Switch to boolean types where appropriate.
|
||||
|
|
14
makefile
14
makefile
|
@ -10,7 +10,7 @@
|
|||
# Eventually switch to using DistUtils to autogenerate.
|
||||
|
||||
NAME=flawfinder
|
||||
VERSION=2.0.1
|
||||
VERSION=2.0.2
|
||||
RPM_VERSION=1
|
||||
VERSIONEDNAME=$(NAME)-$(VERSION)
|
||||
ARCH=noarch
|
||||
|
@ -177,12 +177,12 @@ check: test
|
|||
|
||||
# Run "make test-is-correct" if the results are as expected.
|
||||
test-is-correct: test-results.txt
|
||||
mv test-results.txt correct-results.txt
|
||||
mv test-results.html correct-results.html
|
||||
mv test-results.csv correct-results.csv
|
||||
mv test-results-004.txt correct-results-004.txt
|
||||
mv test-results-005.txt correct-results-005.txt
|
||||
mv test-results-006.txt correct-results-006.txt
|
||||
cp -p test-results.txt correct-results.txt
|
||||
cp -p test-results.html correct-results.html
|
||||
cp -p test-results.csv correct-results.csv
|
||||
cp -p test-results-004.txt correct-results-004.txt
|
||||
cp -p test-results-005.txt correct-results-005.txt
|
||||
cp -p test-results-006.txt correct-results-006.txt
|
||||
|
||||
profile:
|
||||
/usr/lib/python1.5/profile.py ./flawfinder > profile-results $(SAMPLE_DIR)/*/*.[ch] > profile-results
|
||||
|
|
4
setup.py
4
setup.py
|
@ -26,7 +26,7 @@ import commands
|
|||
setup (# Distribution meta-data
|
||||
name = "flawfinder",
|
||||
packages = ["flawfinder"], # Must be same as name
|
||||
version = "2.0.0",
|
||||
version = "2.0.2",
|
||||
description = "a program that examines source code looking for security weaknesses",
|
||||
author = "David A. Wheeler",
|
||||
author_email = "dwheeler@dwheeler.com",
|
||||
|
@ -36,7 +36,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://www.dwheeler.com/flawfinder/",
|
||||
download_url = "https://sourceforge.net/projects/flawfinder/files/flawfinder-2.0.0.tar.gz/download",
|
||||
download_url = "https://sourceforge.net/projects/flawfinder/files/flawfinder-2.0.2.tar.gz/download",
|
||||
keywords = ['analysis', 'security', 'analyzer'],
|
||||
classifiers = [
|
||||
'Development Status :: 5 - Production/Stable',
|
||||
|
|
Loading…
Reference in New Issue