Update for next version (2.0.8)

Change the version number NOW, so we won't forget later.

Signed-off-by: David A. Wheeler <dwheeler@dwheeler.com>
This commit is contained in:
David A. Wheeler 2018-10-08 18:55:52 -04:00
parent 6abb7c524b
commit fccc59cdcb
4 changed files with 5 additions and 5 deletions

View File

@ -55,7 +55,7 @@ import csv # To support generating CSV format
import hashlib import hashlib
# import formatter # import formatter
version = "2.0.7" version = "2.0.8"
# 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.

View File

@ -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.7 Version: 2.0.8
Release: 1%{?dist} Release: 1%{?dist}
License: GPLv2+ License: GPLv2+
Group: Development/Tools Group: Development/Tools

View File

@ -6,7 +6,7 @@
# how to change version numbers. # how to change version numbers.
NAME=flawfinder NAME=flawfinder
VERSION=2.0.7 VERSION=2.0.8
RPM_VERSION=1 RPM_VERSION=1
VERSIONEDNAME=$(NAME)-$(VERSION) VERSIONEDNAME=$(NAME)-$(VERSION)
ARCH=noarch ARCH=noarch

View File

@ -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.7", version = "2.0.8",
# 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://dwheeler.com/flawfinder/", url = "http://dwheeler.com/flawfinder/",
download_url = "https://sourceforge.net/projects/flawfinder/files/flawfinder-2.0.7.tar.gz/download", download_url = "https://sourceforge.net/projects/flawfinder/files/flawfinder-2.0.8.tar.gz/download",
zip_safe = True, zip_safe = True,
keywords = ['analysis', 'security', 'analyzer'], keywords = ['analysis', 'security', 'analyzer'],
classifiers = [ classifiers = [