Skip to content

Commit

Permalink
Merge pull request #31 from essentialkaos/develop
Browse files Browse the repository at this point in the history
Version 2.5.1
  • Loading branch information
andyone authored Oct 25, 2019
2 parents 18c164d + d907478 commit 3b19af0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
4 changes: 2 additions & 2 deletions cli/cli.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ import (
// App info
const (
APP = "Perfecto"
VER = "2.5.0"
VER = "2.5.1"
DESC = "Tool for checking perfectly written RPM specs"
)

Expand Down Expand Up @@ -250,7 +250,7 @@ func countAlerts(alerts []check.Alert) int {
var counter int

for _, alert := range alerts {
if !alert.Line.Skip {
if !alert.Absolve {
counter++
}
}
Expand Down
5 changes: 4 additions & 1 deletion common/perfecto.spec
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

Summary: Tool for checking perfectly written RPM specs
Name: perfecto
Version: 2.5.0
Version: 2.5.1
Release: 0%{?dist}
Group: Development/Tools
License: EKOL
Expand Down Expand Up @@ -87,6 +87,9 @@ fi
################################################################################

%changelog
* Sat Oct 26 2019 Anton Novojilov <[email protected]> - 2.5.1-0
- Fixed bug with counting absolved alerts

* Fri Oct 25 2019 Anton Novojilov <[email protected]> - 2.5.0-0
- Added option for disabling some checks for entire spec
- Added check for HTTPS support on a source domain
Expand Down

0 comments on commit 3b19af0

Please sign in to comment.