diff --git a/cmd/version.go b/cmd/version.go index 249ed73..4a3afc6 100644 --- a/cmd/version.go +++ b/cmd/version.go @@ -10,7 +10,7 @@ import ( "github.com/spf13/cobra" ) -var Version = "0.26.2" +var Version = "0.27.0" func init() { rootCmd.AddCommand(versionCmd) diff --git a/cmd/web.go b/cmd/web.go index 7cbf051..f138b77 100644 --- a/cmd/web.go +++ b/cmd/web.go @@ -39,7 +39,7 @@ type Filters struct { } func (f *Filters) IsEmpty() bool { - return !(f.HasIncludes() && f.HasExcludes()) + return !(f.HasIncludes() || f.HasExcludes()) } func (f *Filters) HasIncludes() bool {