Change version# to 2.0.15

Signed-off-by: David A. Wheeler <dwheeler@dwheeler.com>
This commit is contained in:
David A. Wheeler 2021-01-11 19:20:19 -05:00
parent 6fd354bd2d
commit 8f3111a3fd
4 changed files with 5 additions and 5 deletions

View File

@ -55,7 +55,7 @@ import csv # To support generating CSV format
import hashlib
# import formatter
version = "2.0.14"
version = "2.0.15"
# Program Options - these are the default values.
# TODO: Switch to boolean types where appropriate.

View File

@ -1,6 +1,6 @@
Name: flawfinder
Summary: Examines C/C++ source code for security flaws
Version: 2.0.14
Version: 2.0.15
Release: 1%{?dist}
License: GPLv2+
Group: Development/Tools

View File

@ -1,12 +1,12 @@
# Flawfinder.
# Released under the General Public License (GPL) version 2 or later.
# (C) 2001-2017 David A. Wheeler.
# (C) 2001-2021 David A. Wheeler.
# See "release_process.md" for release process, including
# how to change version numbers.
NAME=flawfinder
VERSION=2.0.14
VERSION=2.0.15
RPM_VERSION=1
VERSIONEDNAME=$(NAME)-$(VERSION)
ARCH=noarch

View File

@ -9,7 +9,7 @@ from setuptools import setup # Don't need find_packages
setup (# Distribution meta-data
name = "flawfinder",
version = "2.0.14",
version = "2.0.15",
# We install a script, not a separate package.
# packages = ["flawfinder"], # Must be same as name
# Do not need: packages=find_packages(),