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 json
|
||||
|
||||
version = "2.0.15"
|
||||
version = "2.0.16"
|
||||
|
||||
# Program Options - these are the default values.
|
||||
# TODO: Switch to boolean types where appropriate.
|
||||
|
@ -138,7 +138,6 @@ class SarifLogger(object):
|
|||
_hitlist = None
|
||||
TOOL_NAME = "Flawfinder"
|
||||
TOOL_URL = "https://dwheeler.com/flawfinder/"
|
||||
# TOOL_VERSION = "2.0.15"
|
||||
TOOL_VERSION = version
|
||||
URI_BASE_ID = "SRCROOT"
|
||||
SARIF_SCHEMA = "https://schemastore.azurewebsites.net/schemas/json/sarif-2.1.0-rtm.5.json"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
Name: flawfinder
|
||||
Summary: Examines C/C++ source code for security flaws
|
||||
Version: 2.0.15
|
||||
Version: 2.0.16
|
||||
Release: 1%{?dist}
|
||||
License: GPLv2+
|
||||
Group: Development/Tools
|
||||
|
|
2
makefile
2
makefile
|
@ -6,7 +6,7 @@
|
|||
# how to change version numbers.
|
||||
|
||||
NAME=flawfinder
|
||||
VERSION=2.0.15
|
||||
VERSION=2.0.16
|
||||
RPM_VERSION=1
|
||||
VERSIONEDNAME=$(NAME)-$(VERSION)
|
||||
ARCH=noarch
|
||||
|
|
|
@ -9,7 +9,7 @@ Make sure every release has a unique version number.
|
|||
|
||||
To change version number, edit the following files:
|
||||
makefile
|
||||
flawfinder
|
||||
flawfinder.py
|
||||
flawfinder.spec
|
||||
setup.py
|
||||
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
|
||||
name = "flawfinder",
|
||||
version = "2.0.15",
|
||||
version = "2.0.16",
|
||||
# We install a script, not a separate package.
|
||||
# packages = ["flawfinder"], # Must be same as name
|
||||
# Do not need: packages=find_packages(),
|
||||
|
|
Loading…
Reference in New Issue