diff --git a/flawfinder.py b/flawfinder.py index 884c36d..d049cda 100755 --- a/flawfinder.py +++ b/flawfinder.py @@ -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" diff --git a/flawfinder.spec b/flawfinder.spec index 3a2b785..6e82194 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.15 +Version: 2.0.16 Release: 1%{?dist} License: GPLv2+ Group: Development/Tools diff --git a/makefile b/makefile index 8a3e4e2..769b86f 100644 --- a/makefile +++ b/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 diff --git a/release_process.md b/release_process.md index 1691edc..597bbb4 100644 --- a/release_process.md +++ b/release_process.md @@ -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 diff --git a/setup.py b/setup.py index 83d71f6..b830204 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.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(),