Mark version as 2.0.3
Signed-off-by: David A. Wheeler <dwheeler@dwheeler.com>
This commit is contained in:
parent
1c9eba3f47
commit
ec31c822dd
|
@ -1,3 +1,7 @@
|
|||
2017-09-02 David A. Wheeler <dwheeler, at, dwheeler.com>
|
||||
* Version 2.0.3
|
||||
* Switch from distutils to setuptools
|
||||
|
||||
2017-08-26 David A. Wheeler <dwheeler, at, dwheeler.com>
|
||||
* Version 2.0.2
|
||||
* Flawfinder can now run on either Python 2.7 or 3
|
||||
|
|
|
@ -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.2</a>,
|
||||
<a href="http://www.dwheeler.com/flawfinder">Flawfinder version 2.0.3</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.2, (C) 2001-2017 David A. Wheeler.
|
||||
Flawfinder version 2.0.3, (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.2"
|
||||
version = "2.0.3"
|
||||
|
||||
# Program Options - these are the default values.
|
||||
# TODO: Switch to boolean types where appropriate.
|
||||
|
|
2
makefile
2
makefile
|
@ -10,7 +10,7 @@
|
|||
# Eventually switch to using DistUtils to autogenerate.
|
||||
|
||||
NAME=flawfinder
|
||||
VERSION=2.0.2
|
||||
VERSION=2.0.3
|
||||
RPM_VERSION=1
|
||||
VERSIONEDNAME=$(NAME)-$(VERSION)
|
||||
ARCH=noarch
|
||||
|
|
4
setup.py
4
setup.py
|
@ -11,7 +11,7 @@ setup (# Distribution meta-data
|
|||
name = "flawfinder",
|
||||
packages = ["flawfinder"], # Must be same as name
|
||||
# Do not need: packages=find_packages(),
|
||||
version = "2.0.2",
|
||||
version = "2.0.3",
|
||||
description = "a program that examines source code looking for security weaknesses",
|
||||
author = "David A. Wheeler",
|
||||
author_email = "dwheeler@dwheeler.com",
|
||||
|
@ -21,7 +21,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.2.tar.gz/download",
|
||||
download_url = "https://sourceforge.net/projects/flawfinder/files/flawfinder-2.0.3.tar.gz/download",
|
||||
zip_safe = True,
|
||||
keywords = ['analysis', 'security', 'analyzer'],
|
||||
classifiers = [
|
||||
|
|
Loading…
Reference in New Issue