Change version number to 1.32
- Change version number early to prevent accidentally confusing this version with a released version.
This commit is contained in:
parent
aad0ac207c
commit
58749e78bc
|
@ -8,7 +8,7 @@ from __future__ import division
|
||||||
|
|
||||||
See the man page for a description of the options."""
|
See the man page for a description of the options."""
|
||||||
|
|
||||||
version="1.31"
|
version="1.32"
|
||||||
|
|
||||||
# The default output is as follows:
|
# The default output is as follows:
|
||||||
# filename:line_number [risk_level] (type) function_name: message
|
# filename:line_number [risk_level] (type) function_name: message
|
||||||
|
|
|
@ -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: 1.31
|
Version: 1.32
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
License: GPLv2+
|
License: GPLv2+
|
||||||
Group: Development/Tools
|
Group: Development/Tools
|
||||||
|
|
2
makefile
2
makefile
|
@ -9,7 +9,7 @@
|
||||||
# Eventually switch to using DistUtils to autogenerate.
|
# Eventually switch to using DistUtils to autogenerate.
|
||||||
|
|
||||||
NAME=flawfinder
|
NAME=flawfinder
|
||||||
VERSION=1.31
|
VERSION=1.32
|
||||||
RPM_VERSION=1
|
RPM_VERSION=1
|
||||||
VERSIONEDNAME=$(NAME)-$(VERSION)
|
VERSIONEDNAME=$(NAME)-$(VERSION)
|
||||||
ARCH=noarch
|
ARCH=noarch
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -25,7 +25,7 @@ import commands
|
||||||
|
|
||||||
setup (# Distribution meta-data
|
setup (# Distribution meta-data
|
||||||
name = "flawfinder",
|
name = "flawfinder",
|
||||||
version = "1.31",
|
version = "1.32",
|
||||||
description = "a program that examines source code looking for security weaknesses",
|
description = "a program that examines source code looking for security weaknesses",
|
||||||
author = "David A. Wheeler",
|
author = "David A. Wheeler",
|
||||||
author_email = "dwheeler@dwheeler.com",
|
author_email = "dwheeler@dwheeler.com",
|
||||||
|
|
Loading…
Reference in New Issue