Change version 2.0.15->2.0.16
Signed-off-by: David A. Wheeler <dwheeler@dwheeler.com>
This commit is contained in:
parent
9a1955fe95
commit
835a3ba63e
|
@ -55,7 +55,7 @@ import csv # To support generating CSV format
|
||||||
import hashlib
|
import hashlib
|
||||||
import json
|
import json
|
||||||
|
|
||||||
version = "2.0.15"
|
version = "2.0.16"
|
||||||
|
|
||||||
# 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.
|
||||||
|
@ -138,7 +138,6 @@ class SarifLogger(object):
|
||||||
_hitlist = None
|
_hitlist = None
|
||||||
TOOL_NAME = "Flawfinder"
|
TOOL_NAME = "Flawfinder"
|
||||||
TOOL_URL = "https://dwheeler.com/flawfinder/"
|
TOOL_URL = "https://dwheeler.com/flawfinder/"
|
||||||
# TOOL_VERSION = "2.0.15"
|
|
||||||
TOOL_VERSION = version
|
TOOL_VERSION = version
|
||||||
URI_BASE_ID = "SRCROOT"
|
URI_BASE_ID = "SRCROOT"
|
||||||
SARIF_SCHEMA = "https://schemastore.azurewebsites.net/schemas/json/sarif-2.1.0-rtm.5.json"
|
SARIF_SCHEMA = "https://schemastore.azurewebsites.net/schemas/json/sarif-2.1.0-rtm.5.json"
|
||||||
|
|
|
@ -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.15
|
Version: 2.0.16
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
License: GPLv2+
|
License: GPLv2+
|
||||||
Group: Development/Tools
|
Group: Development/Tools
|
||||||
|
|
2
makefile
2
makefile
|
@ -6,7 +6,7 @@
|
||||||
# how to change version numbers.
|
# how to change version numbers.
|
||||||
|
|
||||||
NAME=flawfinder
|
NAME=flawfinder
|
||||||
VERSION=2.0.15
|
VERSION=2.0.16
|
||||||
RPM_VERSION=1
|
RPM_VERSION=1
|
||||||
VERSIONEDNAME=$(NAME)-$(VERSION)
|
VERSIONEDNAME=$(NAME)-$(VERSION)
|
||||||
ARCH=noarch
|
ARCH=noarch
|
||||||
|
|
|
@ -9,7 +9,7 @@ Make sure every release has a unique version number.
|
||||||
|
|
||||||
To change version number, edit the following files:
|
To change version number, edit the following files:
|
||||||
makefile
|
makefile
|
||||||
flawfinder
|
flawfinder.py
|
||||||
flawfinder.spec
|
flawfinder.spec
|
||||||
setup.py
|
setup.py
|
||||||
index.html # in dwheeler.com/flawfinder
|
index.html # in dwheeler.com/flawfinder
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -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.15",
|
version = "2.0.16",
|
||||||
# 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(),
|
||||||
|
|
Loading…
Reference in New Issue