diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 85ff4937..cd32e12e 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -23,7 +23,7 @@ If applicable, add screenshots to help explain your problem. **Versions** - OS: [e.g. macos, linux] - - Version [e.g. v0.18.3] + - Version [e.g. v0.19.0] **Additional context** Add any other context about the problem here. diff --git a/Dockerfile b/Dockerfile index 93d0cfbf..9050ceb2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,7 +10,7 @@ RUN shards install --production && \ # RUNNER FROM alpine:latest LABEL org.opencontainers.image.title="OWASP Noir" -LABEL org.opencontainers.image.version="0.18.3" +LABEL org.opencontainers.image.version="0.19.0" LABEL org.opencontainers.image.description="OWASP Noir is an open-source project specializing in identifying attack surfaces for enhanced whitebox security testing and security pipeline." LABEL org.opencontainers.image.authors="Noir Team (@hahwul, @ksg97031)" LABEL org.opencontainers.image.source=https://github.com/owasp-noir/noir diff --git a/shard.yml b/shard.yml index ef876d68..af8a0cb0 100644 --- a/shard.yml +++ b/shard.yml @@ -1,6 +1,6 @@ # Project Metadata name: noir -version: 0.18.3 +version: 0.19.0 authors: - hahwul - ksg97031 diff --git a/snap/snapcraft.yaml b/snap/snapcraft.yaml index 858fdd01..28142e22 100644 --- a/snap/snapcraft.yaml +++ b/snap/snapcraft.yaml @@ -1,6 +1,6 @@ name: noir base: core20 -version: 0.18.3 +version: 0.19.0 summary: Attack surface detector that identifies endpoints by static analysis. description: | Noir is an open-source project specializing in identifying attack surfaces for enhanced whitebox security testing and security pipeline. diff --git a/src/noir.cr b/src/noir.cr index 247a2986..d134a13b 100644 --- a/src/noir.cr +++ b/src/noir.cr @@ -6,7 +6,7 @@ require "./options.cr" require "./techs/techs.cr" module Noir - VERSION = "0.18.3" + VERSION = "0.19.0" end # Run options parser @@ -104,7 +104,7 @@ if app.techs.size == 0 exit(0) end else - if app.techs.any? + if app.techs.empty? app.logger.success "Detected #{app.techs.size} technologies." exclude_techs = app.options["exclude_techs"]?.to_s.split(",") || [] of String