Update version number now
Update the version number *now* so that we won't accidentally release two different versions with the same version number. Signed-off-by: David A. Wheeler <dwheeler@dwheeler.com>
This commit is contained in:
parent
f5abbfc701
commit
d35fd2718a
|
@ -1,4 +1,4 @@
|
|||
Flawfinder version 2.0.9, (C) 2001-2017 David A. Wheeler.
|
||||
Flawfinder version 2.0.10, (C) 2001-2019 David A. Wheeler.
|
||||
Showing hits not in test-saved-hitlist-008.txt
|
||||
Number of rules (primarily dangerous function names) in C/C++ ruleset: 223
|
||||
|
||||
|
|
|
@ -9,8 +9,8 @@
|
|||
<body>
|
||||
<h1>Flawfinder Results</h1>
|
||||
Here are the security scan results from
|
||||
<a href="https://dwheeler.com/flawfinder">Flawfinder version 2.0.9</a>,
|
||||
(C) 2001-2017 <a href="https://dwheeler.com">David A. Wheeler</a>.
|
||||
<a href="https://dwheeler.com/flawfinder">Flawfinder version 2.0.10</a>,
|
||||
(C) 2001-2019 <a href="https://dwheeler.com">David A. Wheeler</a>.
|
||||
Number of rules (primarily dangerous function names) in C/C++ ruleset: 223
|
||||
<p>
|
||||
Examining test.c <br>
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Flawfinder version 2.0.9, (C) 2001-2017 David A. Wheeler.
|
||||
Flawfinder version 2.0.10, (C) 2001-2019 David A. Wheeler.
|
||||
Number of rules (primarily dangerous function names) in C/C++ ruleset: 223
|
||||
Examining test.c
|
||||
Examining test2.c
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
#
|
||||
# Currently this program can only analyze C/C++ code.
|
||||
#
|
||||
# Copyright (C) 2001-2017 David A. Wheeler.
|
||||
# Copyright (C) 2001-2019 David A. Wheeler.
|
||||
# This is released under the
|
||||
# GNU General Public License (GPL) version 2 or later (GPL-2.0+):
|
||||
#
|
||||
|
@ -55,7 +55,7 @@ import csv # To support generating CSV format
|
|||
import hashlib
|
||||
# import formatter
|
||||
|
||||
version = "2.0.9"
|
||||
version = "2.0.10"
|
||||
|
||||
# Program Options - these are the default values.
|
||||
# TODO: Switch to boolean types where appropriate.
|
||||
|
@ -1693,9 +1693,9 @@ def display_header():
|
|||
print("<h1>Flawfinder Results</h1>")
|
||||
print("Here are the security scan results from")
|
||||
print('<a href="https://dwheeler.com/flawfinder">Flawfinder version %s</a>,' % version)
|
||||
print('(C) 2001-2017 <a href="https://dwheeler.com">David A. Wheeler</a>.')
|
||||
print('(C) 2001-2019 <a href="https://dwheeler.com">David A. Wheeler</a>.')
|
||||
else:
|
||||
print("Flawfinder version %s, (C) 2001-2017 David A. Wheeler." % version)
|
||||
print("Flawfinder version %s, (C) 2001-2019 David A. Wheeler." % version)
|
||||
displayed_header = 1
|
||||
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
Name: flawfinder
|
||||
Summary: Examines C/C++ source code for security flaws
|
||||
Version: 2.0.9
|
||||
Version: 2.0.10
|
||||
Release: 1%{?dist}
|
||||
License: GPLv2+
|
||||
Group: Development/Tools
|
||||
|
|
2
makefile
2
makefile
|
@ -6,7 +6,7 @@
|
|||
# how to change version numbers.
|
||||
|
||||
NAME=flawfinder
|
||||
VERSION=2.0.9
|
||||
VERSION=2.0.10
|
||||
RPM_VERSION=1
|
||||
VERSIONEDNAME=$(NAME)-$(VERSION)
|
||||
ARCH=noarch
|
||||
|
|
2
setup.py
2
setup.py
|
@ -9,7 +9,7 @@ from setuptools import setup # Don't need find_packages
|
|||
|
||||
setup (# Distribution meta-data
|
||||
name = "flawfinder",
|
||||
version = "2.0.9",
|
||||
version = "2.0.10",
|
||||
# We install a script, not a separate package.
|
||||
# packages = ["flawfinder"], # Must be same as name
|
||||
# Do not need: packages=find_packages(),
|
||||
|
|
Loading…
Reference in New Issue