Skip to content

Commit

Permalink
Release version 2.0.18
Browse files Browse the repository at this point in the history
Signed-off-by: David A. Wheeler <[email protected]>
  • Loading branch information
david-a-wheeler committed Jun 25, 2021
1 parent 9744995 commit 51c988d
Show file tree
Hide file tree
Showing 9 changed files with 52 additions and 46 deletions.
6 changes: 6 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
2021-06-24 David A. Wheeler
* Version 2.0.18
* Fix SARIF output. SARIF output is new to flawfinder, and
there was a subtle error in its generation that causes GitHub
to reject the SARIF file.

2021-06-02 David A. Wheeler
* Version 2.0.17
* Fix the distributed tarball, which didn't include the
Expand Down
2 changes: 1 addition & 1 deletion flawfinder.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
import hashlib
import json

version = "2.0.17"
version = "2.0.18"

# Program Options - these are the default values.
# TODO: Switch to boolean types where appropriate.
Expand Down
2 changes: 1 addition & 1 deletion flawfinder.spec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Name: flawfinder
Summary: Examines C/C++ source code for security flaws
Version: 2.0.17
Version: 2.0.18
Release: 1%{?dist}
License: GPLv2+
Group: Development/Tools
Expand Down
2 changes: 1 addition & 1 deletion makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# how to change version numbers.

NAME=flawfinder
VERSION=2.0.17
VERSION=2.0.18
RPM_VERSION=1
VERSIONEDNAME=$(NAME)-$(VERSION)
ARCH=noarch
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

setup (# Distribution meta-data
name = "flawfinder",
version = "2.0.17",
version = "2.0.18",
# We install a script, not a separate package.
# packages = ["flawfinder"], # Must be same as name
# Do not need: packages=find_packages(),
Expand Down
2 changes: 1 addition & 1 deletion test/correct-results-008.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Flawfinder version 2.0.17, (C) 2001-2019 David A. Wheeler.
Flawfinder version 2.0.18, (C) 2001-2019 David A. Wheeler.
Showing hits not in test-saved-hitlist-008.txt
Number of rules (primarily dangerous function names) in C/C++ ruleset: 222

Expand Down
78 changes: 39 additions & 39 deletions test/correct-results.csv

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion test/correct-results.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<body>
<h1>Flawfinder Results</h1>
Here are the security scan results from
<a href="https://dwheeler.com/flawfinder">Flawfinder version 2.0.17</a>,
<a href="https://dwheeler.com/flawfinder">Flawfinder version 2.0.18</a>,
(C) 2001-2019 <a href="https://dwheeler.com">David A. Wheeler</a>.
Number of rules (primarily dangerous function names) in C/C++ ruleset: 222
<p>
Expand Down
2 changes: 1 addition & 1 deletion test/correct-results.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Flawfinder version 2.0.17, (C) 2001-2019 David A. Wheeler.
Flawfinder version 2.0.18, (C) 2001-2019 David A. Wheeler.
Number of rules (primarily dangerous function names) in C/C++ ruleset: 222
Examining test.c
Examining test2.c
Expand Down

0 comments on commit 51c988d

Please sign in to comment.