From 4e996423922055aa23f6e46480d7737c868eee59 Mon Sep 17 00:00:00 2001 From: "David A. Wheeler" Date: Sun, 27 Jul 2014 17:19:24 -0400 Subject: [PATCH] Switch version # to 1.31. - Version number 1.30 might be confused with 1.3. This eliminates the potential problem. --- correct-results.html | 2 +- correct-results.txt | 2 +- flawfinder | 2 +- flawfinder.spec | 2 +- makefile | 2 +- setup.py | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/correct-results.html b/correct-results.html index 75f3d4d..c428837 100644 --- a/correct-results.html +++ b/correct-results.html @@ -9,7 +9,7 @@

Flawfinder Results

Here are the security scan results from -Flawfinder version 1.30, +Flawfinder version 1.31, (C) 2001-2014 David A. Wheeler. Number of rules (primarily dangerous function names) in C/C++ ruleset: 169

diff --git a/correct-results.txt b/correct-results.txt index 63b03b7..dfda80a 100644 --- a/correct-results.txt +++ b/correct-results.txt @@ -1,4 +1,4 @@ -Flawfinder version 1.30, (C) 2001-2014 David A. Wheeler. +Flawfinder version 1.31, (C) 2001-2014 David A. Wheeler. Number of rules (primarily dangerous function names) in C/C++ ruleset: 169 Examining test.c Examining test2.c diff --git a/flawfinder b/flawfinder index 9f75789..8270e57 100755 --- a/flawfinder +++ b/flawfinder @@ -6,7 +6,7 @@ See the man page for a description of the options.""" -version="1.30" +version="1.31" # The default output is as follows: # filename:line_number [risk_level] (type) function_name: message diff --git a/flawfinder.spec b/flawfinder.spec index 2aaa587..ef6950b 100644 --- a/flawfinder.spec +++ b/flawfinder.spec @@ -1,6 +1,6 @@ Name: flawfinder Summary: Examines C/C++ source code for security flaws -Version: 1.30 +Version: 1.31 Release: 1%{?dist} License: GPLv2+ Group: Development/Tools diff --git a/makefile b/makefile index c3038c8..1b87b78 100644 --- a/makefile +++ b/makefile @@ -9,7 +9,7 @@ # Eventually switch to using DistUtils to autogenerate. NAME=flawfinder -VERSION=1.30 +VERSION=1.31 RPM_VERSION=1 VERSIONEDNAME=$(NAME)-$(VERSION) ARCH=noarch diff --git a/setup.py b/setup.py index fc01ea7..8d59113 100644 --- a/setup.py +++ b/setup.py @@ -25,7 +25,7 @@ import commands setup (# Distribution meta-data name = "flawfinder", - version = "1.30", + version = "1.31", description = "a program that examines source code looking for security weaknesses", author = "David A. Wheeler", author_email = "dwheeler@dwheeler.com",