From fccc59cdcbf8c0a17f16ffee3dcc15b4881eb65e Mon Sep 17 00:00:00 2001 From: "David A. Wheeler" Date: Mon, 8 Oct 2018 18:55:52 -0400 Subject: [PATCH] Update for next version (2.0.8) Change the version number NOW, so we won't forget later. Signed-off-by: David A. Wheeler --- flawfinder | 2 +- flawfinder.spec | 2 +- makefile | 2 +- setup.py | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/flawfinder b/flawfinder index 335dba4..34026e7 100755 --- a/flawfinder +++ b/flawfinder @@ -55,7 +55,7 @@ import csv # To support generating CSV format import hashlib # import formatter -version = "2.0.7" +version = "2.0.8" # Program Options - these are the default values. # TODO: Switch to boolean types where appropriate. diff --git a/flawfinder.spec b/flawfinder.spec index 1ad389e..391411c 100644 --- a/flawfinder.spec +++ b/flawfinder.spec @@ -1,6 +1,6 @@ Name: flawfinder Summary: Examines C/C++ source code for security flaws -Version: 2.0.7 +Version: 2.0.8 Release: 1%{?dist} License: GPLv2+ Group: Development/Tools diff --git a/makefile b/makefile index bcdabe6..8d87cab 100644 --- a/makefile +++ b/makefile @@ -6,7 +6,7 @@ # how to change version numbers. NAME=flawfinder -VERSION=2.0.7 +VERSION=2.0.8 RPM_VERSION=1 VERSIONEDNAME=$(NAME)-$(VERSION) ARCH=noarch diff --git a/setup.py b/setup.py index 300d195..cc89878 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ from setuptools import setup # Don't need find_packages setup (# Distribution meta-data name = "flawfinder", - version = "2.0.7", + version = "2.0.8", # 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://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, keywords = ['analysis', 'security', 'analyzer'], classifiers = [