Skip to content

Commit

Permalink
Version 2.0.19
Browse files Browse the repository at this point in the history
Signed-off-by: David A. Wheeler <dwheeler@dwheeler.com>
  • Loading branch information
david-a-wheeler committed Aug 29, 2021
1 parent 8d879c0 commit c57197c
Show file tree
Hide file tree
Showing 9 changed files with 53 additions and 46 deletions.
7 changes: 7 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
2021-08-29 David A. Wheeler
* Version 2.0.19
* Fix so we send error messages to stderr instead of stdout.
Originally we sent some to stdout by mistake, which could
mess up results since the error messages would be mixed up
with the results.

2021-06-24 David A. Wheeler
* Version 2.0.18
* Fix SARIF output. SARIF output is new to flawfinder, and
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.18"
version = "2.0.19"

# 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.18
Version: 2.0.19
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.18
VERSION=2.0.19
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.18",
version = "2.0.19",
# 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.18, (C) 2001-2019 David A. Wheeler.
Flawfinder version 2.0.19, (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.18</a>,
<a href="https://dwheeler.com/flawfinder">Flawfinder version 2.0.19</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.18, (C) 2001-2019 David A. Wheeler.
Flawfinder version 2.0.19, (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 c57197c

Please sign in to comment.