Skip to content

Commit 0750c4d

Browse files
authored
Merge pull request #670 from owasp-noir/release/0.23.1
Release v0.23.1
2 parents e804368 + facbdb9 commit 0750c4d

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ If applicable, add screenshots to help explain your problem.
2323

2424
**Versions**
2525
- OS: [e.g. macos, linux]
26-
- Version [e.g. v0.23.0]
26+
- Version [e.g. v0.23.1]
2727

2828
**Additional context**
2929
Add any other context about the problem here.

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ RUN apt-get update && \
1313
##= RUNNER =##
1414
FROM debian:13-slim
1515
LABEL org.opencontainers.image.title="OWASP Noir"
16-
LABEL org.opencontainers.image.version="0.23.0"
16+
LABEL org.opencontainers.image.version="0.23.1"
1717
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."
1818
LABEL org.opencontainers.image.authors="Noir Team (@hahwul, @ksg97031)"
1919
LABEL org.opencontainers.image.source=https://github.com/owasp-noir/noir

docs/content/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
template = "landing.html"
33

44
[extra]
5-
version = "v0.23.0"
5+
version = "v0.23.1"
66

77
[extra.hero]
88
title = "NOIR"

docs/content/resoruces/release_procedure/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ To update the main Homebrew formula, you need to submit a pull request to the `h
3838

3939
```bash
4040
brew bump-formula-pr --strict --version <VERSION> noir
41-
# Example: brew bump-formula-pr --strict --version 0.23.0 noir
41+
# Example: brew bump-formula-pr --strict --version 0.23.1 noir
4242
```
4343

4444
3. **Style Check**: (Optional) To ensure your changes meet Homebrew's style guidelines, you can run:

shard.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Project Metadata
22
name: noir
3-
version: 0.23.0
3+
version: 0.23.1
44
authors:
55
- hahwul <hahwul@gmail.com>
66
- ksg97031 <ksg97031@gmail.com>

snap/snapcraft.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: noir
22
base: core20
3-
version: 0.23.0
3+
version: 0.23.1
44
summary: Attack surface detector that identifies endpoints by static analysis.
55
description: |
66
Noir is an open-source project specializing in identifying attack surfaces for enhanced whitebox security testing and security pipeline.

src/noir.cr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ require "./options.cr"
66
require "./techs/techs.cr"
77

88
module Noir
9-
VERSION = "0.23.0"
9+
VERSION = "0.23.1"
1010
end
1111

1212
# Run options parser

0 commit comments

Comments
 (0)