Update version#
Signed-off-by: David A. Wheeler <dwheeler@dwheeler.com>
This commit is contained in:
parent
6b350e7bdd
commit
2c4e1d996b
|
@ -1,4 +1,4 @@
|
|||
2017-09-24 David A. Wheeler <dwheeler, at, dwheeler.com>
|
||||
2017-11-16 David A. Wheeler <dwheeler, at, dwheeler.com>
|
||||
* add detection of crypt_r function
|
||||
* add detection of errant equal, mismatch, and is_permutation
|
||||
* update CWE, risk, and discussion for C++14 STL functions
|
||||
|
|
2
makefile
2
makefile
|
@ -10,7 +10,7 @@
|
|||
# Eventually switch to using DistUtils to autogenerate.
|
||||
|
||||
NAME=flawfinder
|
||||
VERSION=2.0.4
|
||||
VERSION=2.0.5
|
||||
RPM_VERSION=1
|
||||
VERSIONEDNAME=$(NAME)-$(VERSION)
|
||||
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
|
||||
name = "flawfinder",
|
||||
version = "2.0.4",
|
||||
version = "2.0.5",
|
||||
# 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://www.dwheeler.com/flawfinder/",
|
||||
download_url = "https://sourceforge.net/projects/flawfinder/files/flawfinder-2.0.4.tar.gz/download",
|
||||
download_url = "https://sourceforge.net/projects/flawfinder/files/flawfinder-2.0.5.tar.gz/download",
|
||||
zip_safe = True,
|
||||
keywords = ['analysis', 'security', 'analyzer'],
|
||||
classifiers = [
|
||||
|
|
Loading…
Reference in New Issue